diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-13 20:50:20 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-13 20:50:20 +0000 |
commit | fa3b7ce070ca154b67d4653f1149a33ea7bef448 (patch) | |
tree | d1c3e6ec09f6dae7de0ab853763d7fd3be748c06 | |
parent | cb1dee09e12ff5c62dfc1367f02f2ea6804fecfd (diff) |
libs/web: allow percent sign in urls
-rw-r--r-- | libs/web/luasrc/dispatcher.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |