aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authordvs12025-01-10 14:51:51 +1000
committerdvs12025-01-10 14:51:51 +1000
commitec77fcfc0b5b8ea698ec60887960fe6e4c7f9023 (patch)
tree5bcee65008ff973fa8e16d1fb5004de82914d6d8
parentTODO-- (diff)
downloadnotYetAnotherWiki-master.zip
notYetAnotherWiki-master.tar.gz
notYetAnotherWiki-master.tar.bz2
notYetAnotherWiki-master.tar.xz
Don't lowercase the resulting filename.HEADmaster
-rwxr-xr-xnotYetAnotherWiki.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/notYetAnotherWiki.lua b/notYetAnotherWiki.lua
index da88a52..4fd9fa1 100755
--- a/notYetAnotherWiki.lua
+++ b/notYetAnotherWiki.lua
@@ -117,7 +117,7 @@ local whichPage = function(f)
117 for i, v in ipairs{'about', 'readme', 'index', 'homepage', 'mainpage', 'webhome'} do 117 for i, v in ipairs{'about', 'readme', 'index', 'homepage', 'mainpage', 'webhome'} do
118 for j, w in ipairs(Subs[f].files) do 118 for j, w in ipairs(Subs[f].files) do
119 if v == string.lower(w) then 119 if v == string.lower(w) then
120 fl = v .. '.HTML' 120 fl = w .. '.HTML'
121 break 121 break
122 end 122 end
123 end 123 end