summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-banip
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-02-12 08:32:02 +0100
committerJo-Philipp Wich <jo@mein.io>2019-02-12 08:32:02 +0100
commiteda8f02dac3caa4d0f52cd1e860d7a392c295df3 (patch)
treed4d740fedc7f485b7ab3702f62c6cb47cbfb0444 /applications/luci-app-banip
parent4141243762aafb7960d67f871c97907307005f87 (diff)
treewide: avoid double-escaping CBI section labels
Since the section labels are already HTML-escaped implicitely by the striptags() function, we must not escape them again in attr() or ifattr(). Fixes: #2524 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-banip')
-rw-r--r--applications/luci-app-banip/luasrc/view/banip/sourcelist.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm b/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm
index 743886f88..12240e5ae 100644
--- a/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm
+++ b/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm
@@ -27,7 +27,7 @@ local anonclass = (not self.anonymous or self.sectiontitle) and "named" or "ano
for i, k in ipairs(self:cfgsections()) do
section = k
local sectionname = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k)
- local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname)
+ local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname, true)
isempty = false
scope = { valueheader = "cbi/cell_valueheader", valuefooter = "cbi/cell_valuefooter" }
-%>