From 253eafb57752f8a33e2465e336625a83885e61f4 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 18 Jul 2011 14:50:39 +0000 Subject: [PATCH] libs/web: fix index cache rebuild triggering (#275) --- libs/web/luasrc/dispatcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0