diff options
author | Steven Barth <steven@midlink.org> | 2008-06-06 20:45:33 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-06-06 20:45:33 +0000 |
commit | cd0fb5e44e5cb538d93024d02a14a02c00752641 (patch) | |
tree | d6188cf6d6c9ee67b4a12261c3faee545cd446aa /themes/fledermaus | |
parent | 8644ff1eab93d067e316eee9f4b567e1bf07ccb3 (diff) |
* Removed High-Level UCI-API due to Lua compiler bugs
Diffstat (limited to 'themes/fledermaus')
-rw-r--r-- | themes/fledermaus/luasrc/view/themes/fledermaus/header.htm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm index 1b7c87532..0556bef86 100644 --- a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm +++ b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm @@ -120,9 +120,11 @@ end <% if "admin" == request[1] then local ucic = 0 - for n, s in pairs(require("luci.model.uci").changes()) do - for no, o in pairs(s) do - ucic = ucic + 1; + 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 end %> |