diff options
author | Steven Barth <steven@midlink.org> | 2008-07-18 20:53:45 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-18 20:53:45 +0000 |
commit | 90c98540b15d2f780fc30223e6ff32399a78a130 (patch) | |
tree | ab6d41f545b04fab32a15264ee6c77403837129e /libs/web/luasrc/template.lua | |
parent | 8895d236ea88af79d23e55a7482d3822060f4493 (diff) |
libs/web: Fixed a bug regarding % characters in luci.template
Diffstat (limited to 'libs/web/luasrc/template.lua')
-rw-r--r-- | libs/web/luasrc/template.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/web/luasrc/template.lua b/libs/web/luasrc/template.lua index 5647865f7..18abf6df8 100644 --- a/libs/web/luasrc/template.lua +++ b/libs/web/luasrc/template.lua @@ -93,6 +93,7 @@ function compile(template) -- Parse the expressions for k,v in pairs(expr) do local p = v:sub(1, 1) + v = v:gsub("%%", "%%%%") local re = nil if p == "+" then re = r_include:format(sanitize(string.sub(v, 2))) |