summaryrefslogtreecommitdiffhomepage
path: root/themes/openwrt-light
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-09-16 01:14:30 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-09-16 01:14:30 +0000
commitb11c6ecbeea88f782cef9c0441b3927d0c736a56 (patch)
tree7aee15b511965e17912f26d7f731a967daa23334 /themes/openwrt-light
parentc32a729fb2c88aad7bfb4d37eed52dbf1d8c8b17 (diff)
* luci/themes: fix xml errors triggered by query strings in menu entries
* luci/app-olsr: fix html error in mid table
Diffstat (limited to 'themes/openwrt-light')
-rw-r--r--themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm4
1 files changed, 2 insertions, 2 deletions
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 356ae369b..31b1ad017 100644
--- a/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm
+++ b/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm
@@ -55,7 +55,7 @@ require("luci.http").prepare_content("text/html")
var lis = document.getElementById("mainmenu").getElementsByTagName("LI");
var divs = document.getElementById("mainmenu").getElementsByTagName("DIV");
-
+
for( var i = 0; i < lis.length; i++ ) ie_hover( lis[i] );
for( var i = 0; i < divs.length; i++ ) ie_hover( divs[i] );
}
@@ -117,7 +117,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="<%=href%>"><%=nnode.title%></a></span>
+ <span<% if nnode._menu_selected then %> class="active"<%end%>><a href="<%=luci.util.pcdata(href)%>"><%=nnode.title%></a></span>
<%- submenu(prefix .. v.name .. "/", nnode) %>
</li>
<%- end %>