diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-09-27 21:16:41 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-09-27 21:17:08 +0200 |
commit | 72d4b62d2504d1e7e0298e575eb88eb88486ae53 (patch) | |
tree | 453c1307042d94e50879ce4172b79e62a5635c24 /themes/luci-theme-material | |
parent | ce46437b30625ab8cf5eed2cb157b21f2acd38a1 (diff) |
luci-theme-material: do not double escape menu titles
Fixes #1410.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'themes/luci-theme-material')
-rw-r--r-- | themes/luci-theme-material/luasrc/view/themes/material/header.htm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/luci-theme-material/luasrc/view/themes/material/header.htm b/themes/luci-theme-material/luasrc/view/themes/material/header.htm index 1f1df9c9a..6d1e6efb4 100644 --- a/themes/luci-theme-material/luasrc/view/themes/material/header.htm +++ b/themes/luci-theme-material/luasrc/view/themes/material/header.htm @@ -109,7 +109,7 @@ for i, r in ipairs(childs) do local nnode = node.nodes[r] - local title = pcdata(striptags(translate(nnode.title))) + local title = striptags(translate(nnode.title)) write('<li><a data-title="%s" href="%s">%s</a></li>' %{ title, @@ -132,7 +132,7 @@ local grandchildren = disp.node_childs(nnode) if #grandchildren > 0 then - local title = pcdata(striptags(translate(nnode.title))) + local title = striptags(translate(nnode.title)) write('<li class="slide"><a class="menu" data-title="%s" href="#">%s</a>' %{ title, @@ -142,7 +142,7 @@ render_submenu(category .. "/" .. r, nnode) write('</li>') else - local title = pcdata(striptags(translate(nnode.title))) + local title = striptags(translate(nnode.title)) write('<li><a data-title="%s" href="%s">%s</a></li>' %{ title, |