From c9cbd9fe29942b3c09c36938e724cc7dd3111568 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 25 Mar 2010 13:46:17 +0000 Subject: themes, i18n: fix double encoded entities (#114) --- themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'themes/openwrt-light/luasrc/view') diff --git a/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm b/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm index 5a19934255..33998da721 100644 --- a/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm +++ b/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm @@ -96,7 +96,7 @@ local function submenu(prefix, node) local href = controller .. prefix .. v.name .. "/" href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href %> -
  • class="active"<%end%> href="<%=pcdata(href)%>"><%=pcdata(striptags(nnode.title))%><%- +
  • class="active"<%end%> href="<%=pcdata(href)%>"><%=striptags(nnode.title)%><%- submenu(prefix .. v.name .. "/", nnode) %>
  • <%- @@ -122,7 +122,7 @@ if cattree and cattree.nodes then local href = controller.."/"..category.."/"..k.name.."/" href = (k.query) and href .. luci.http.build_querystring(k.query) or href %> -
  • class="preactive"<%end%> href="<%=pcdata(href)%>"><%=pcdata(striptags(node.title))%><% +
  • class="preactive"<%end%> href="<%=pcdata(href)%>"><%=striptags(node.title)%><% submenu("/" .. category .. "/" .. k.name .. "/", node) %>
  • <% end end @@ -133,7 +133,7 @@ end