diff options
Diffstat (limited to 'themes')
3 files changed, 9 insertions, 3 deletions
diff --git a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm index ca6438111..db29affb9 100644 --- a/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm +++ b/themes/fledermaus/luasrc/view/themes/fledermaus/header.htm @@ -154,7 +154,9 @@ end <% if tree.nodes[category] and tree.nodes[category].ucidata then local ucic = 0 - for i, j in pairs(require("luci.model.uci").changes()) do + 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 k, l in pairs(j) do for m, n in pairs(l) do ucic = ucic + 1; 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 e9e1a135a..fe0fa0b33 100644 --- a/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm +++ b/themes/openwrt-light/luasrc/view/themes/openwrt-light/header.htm @@ -161,7 +161,9 @@ end <% if tree.nodes[category] and tree.nodes[category].ucidata then local ucic = 0 - for i, j in pairs(require("luci.model.uci").changes()) do + 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 k, l in pairs(j) do for m, n in pairs(l) do ucic = ucic + 1; diff --git a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm index 6b8311431..b3a53c589 100644 --- a/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm +++ b/themes/openwrt.org/luasrc/view/themes/openwrt.org/header.htm @@ -162,7 +162,9 @@ end <% if tree.nodes[category] and tree.nodes[category].ucidata then local ucic = 0 - for i, j in pairs(require("luci.model.uci").changes()) do + 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 k, l in pairs(j) do for m, n in pairs(l) do ucic = ucic + 1; |