From: Jo-Philipp Wich Date: Mon, 18 Jul 2011 14:50:39 +0000 (+0000) Subject: libs/web: fix index cache rebuild triggering (#275) X-Git-Tag: 0.11.0~1934 X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=253eafb57752f8a33e2465e336625a83885e61f4;p=project%2Fluci.git libs/web: fix index cache rebuild triggering (#275) --- diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index 28c460858..4cbbe58ce 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -437,7 +437,7 @@ function createindex_plain(path, suffixes) if cachedate then local realdate = 0 for _, obj in ipairs(controllers) do - local omtime = fs.stat(path .. "/" .. obj, "mtime") + local omtime = fs.stat(obj, "mtime") realdate = (omtime and omtime > realdate) and omtime or realdate end