diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 20:25:56 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 20:25:56 +0000 |
commit | 0694d421eb6b45a8f0ee6c2b158dbb77883f263d (patch) | |
tree | dfd3344bb5f44c82194cae2ce12e65bc07078e7d /themes/freifunk | |
parent | eeed712024f1779c35a2bb85caf1fb4b366a0385 (diff) |
themes: entity fixes for theme headers
Diffstat (limited to 'themes/freifunk')
-rw-r--r-- | themes/freifunk/luasrc/view/themes/freifunk/header.htm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/freifunk/luasrc/view/themes/freifunk/header.htm b/themes/freifunk/luasrc/view/themes/freifunk/header.htm index f72df4938..30db92b01 100644 --- a/themes/freifunk/luasrc/view/themes/freifunk/header.htm +++ b/themes/freifunk/luasrc/view/themes/freifunk/header.htm @@ -44,7 +44,7 @@ require("luci.http").prepare_content("text/html") <link rel="shortcut icon" href="<%=media%>/images/favicon.ico" /> <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" /> <meta http-equiv="content-script-type" content="text/javascript" /> - <title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. pcdata(node.title) or '')) %> - LuCI</title> + <title><%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI</title> <!--[if lt IE 7]> <script type="text/javascript"> @@ -92,7 +92,7 @@ for k,v in pairs(request) do if c.nodes and c.nodes[v] then c = c.nodes[v] url = url .. "/" .. v - %><a href="<%=url%>"><%=pcdata(c.title or v)%></a> <% if k ~= #request then %>» <% end + %><a href="<%=url%>"><%=pcdata(striptags(c.title or v))%></a> <% if k ~= #request then %>» <% end end end %> @@ -126,7 +126,7 @@ local function submenu(prefix, node) href = (nnode.query) and href .. luci.http.build_querystring(nnode.query) or href %> <li> - <span<% if nnode._menu_selected then %> class="active"<%end%>><a href="<%=luci.util.pcdata(href)%>"><%=pcdata(nnode.title)%></a></span> + <span<% if nnode._menu_selected then %> class="active"<%end%>><a href="<%=pcdata(href)%>"><%=pcdata(striptags(nnode.title))%></a></span> <%- submenu(prefix .. v.name .. "/", nnode) %> </li> <%- end %> @@ -149,7 +149,7 @@ if cattree and cattree.nodes then if not node.hidden and node.title and node.target then local href = controller.."/"..category.."/"..k.name href = (k.query) and href .. luci.http.build_querystring(k.query) or href %> - <div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=href%>"><%=pcdata(node.title)%></a> + <div<% if node._menu_selected then %> class="preactive"<%end%>><a href="<%=pcdata(href)%>"><%=pcdata(striptags(node.title))%></a> <%submenu("/" .. category .. "/" .. k.name .. "/", node)%> </div> <% end |