libs/web: allow percent sign in urls
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 13 Nov 2010 20:50:20 +0000 (20:50 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 13 Nov 2010 20:50:20 +0000 (20:50 +0000)
libs/web/luasrc/dispatcher.lua

index 4514762..0f49b90 100644 (file)
@@ -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