diff options
author | Steven Barth <steven@midlink.org> | 2008-09-10 12:47:21 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-10 12:47:21 +0000 |
commit | 1a4c192c65c166304014075857d7568cb4e7ae5b (patch) | |
tree | f2ffbc393f89ac3d353e8b7829e44c7cec8bc15a /libs | |
parent | 9e2759ec348c4b44475fd594d91eab14e7e3220e (diff) |
More luci.util optimizations
Diffstat (limited to 'libs')
-rw-r--r-- | libs/core/luasrc/util.lua | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index c84df1a17..95491cfee 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -194,13 +194,13 @@ end -- @param value String value containing the data to escape -- @return String value containing the escaped data function pcdata(value) - if not value then return end - value = tostring(value) - value = value:gsub("&", "&") - value = value:gsub('"', """) - value = value:gsub("'", "'") - value = value:gsub("<", "<") - return value:gsub(">", ">") + return value and tostring(value):gsub("[&\"'<>]", { + ["&"] = "&", + ['"'] = """, + ["'"] = "'", + ["<"] = "<", + [">"] = ">" + }) end --- Strip HTML tags from given string. @@ -567,13 +567,12 @@ function _sortiter( t, f ) end local _pos = 0 - local _len = table.getn( keys ) table.sort( keys, f ) return function() _pos = _pos + 1 - if _pos <= _len then + if _pos <= #keys then return keys[_pos], t[keys[_pos]] end end |