* luci/themes: fix xml errors triggered by query strings in menu entries
[project/luci.git] / themes / openwrt-light / luasrc / view / themes / openwrt-light / header.htm
index 0d9d1bd..31b1ad0 100644 (file)
@@ -36,7 +36,7 @@ require("luci.http").prepare_content("text/html")
 -%>
 
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
        <link rel="stylesheet" type="text/css" href="<%=media%>/cascade.css" />
@@ -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 %>
@@ -161,9 +161,7 @@ end
        <%
                if tree.nodes[category] and tree.nodes[category].ucidata then
                        local ucic = 0
-                       require("luci.model.uci")
-                       luci.model.uci.set_savedir(luci.model.uci.savedir_default)
-                       for i, j in pairs(luci.model.uci.changes()) do
+                       for i, j in pairs(require("luci.model.uci").cursor():changes()) do
                                for k, l in pairs(j) do
                                        for m, n in pairs(l) do
                                                ucic = ucic + 1;