* luci/libs/cbi: implement commit hooks in cbi maps
[project/luci.git] / modules / admin-mini / luasrc / model / cbi / mini / luci.lua
index 1b0f3b1..8d4e705 100644 (file)
@@ -15,6 +15,13 @@ $Id$
 require("luci.config")
 m = Map("luci", translate("webui"), translate("a_i_luci1"))
 
+-- force reload of global luci config namespace to reflect the changes
+function m.commit_handler(self)
+       package.loaded["luci.config"] = nil
+       require("luci.config")
+end
+
+
 c = m:section(NamedSection, "main", "core", translate("general"))
 
 l = c:option(ListValue, "lang", translate("language"))
@@ -33,4 +40,4 @@ for k, v in pairs(luci.config.themes) do
        end
 end
 
-return m
\ No newline at end of file
+return m