* Removed High-Level UCI-API due to Lua compiler bugs
[project/luci.git] / themes / openwrt.org / luasrc / view / themes / openwrt.org / header.htm
index ee784f2..8672b38 100644 (file)
@@ -119,12 +119,10 @@ end
                </div>
                <%
                        if "admin" == request[1] then
-                               require("luci.model.uci") 
                                local ucic = 0
-                                local changes = luci.model.uci.changes()
-                               if changes then
-                                       for n, s in pairs(changes) do
-                                               for no, o in pairs(s) do
+                               for i, j in pairs(require("luci.model.uci").changes()) do
+                                       for k, l in pairs(j) do
+                                               for m, n in pairs(l) do
                                                        ucic = ucic + 1;
                                                end
                                        end
@@ -132,7 +130,7 @@ end
                %>
                <div><%:config Konfiguration%>
                        <ul>
-                       <% if ucic then %>
+                       <% if ucic > 0 then %>
                                <li><a href="<%=controller%>/admin/uci/changes"><%:changes Ă„nderungen%>: <%=ucic%></a></li>
                                <li><a href="<%=controller%>/admin/uci/apply"><%:apply Anwenden%></a></li>
                                <li><a href="<%=controller%>/admin/uci/revert"><%:revert Verwerfen%></a></li>