From fa3b7ce070ca154b67d4653f1149a33ea7bef448 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 13 Nov 2010 20:50:20 +0000 Subject: [PATCH] libs/web: allow percent sign in urls --- 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 451476202..0f49b90ce 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -64,7 +64,7 @@ function build_url(...) local p for _, p in ipairs(path) do - if p:match("^[a-zA-Z0-9_%-%./,;]+$") then + if p:match("^[a-zA-Z0-9_%-%.%%/,;]+$") then url[#url+1] = "/" url[#url+1] = p end -- 2.11.0