diff options
author | Steven Barth <steven@midlink.org> | 2008-09-05 18:39:42 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-05 18:39:42 +0000 |
commit | a8a72c1ec8bc0625dad70f22ec85ff7e9e477074 (patch) | |
tree | d312f7eeca315776798097691d1888f8ccb3d68f /libs/web | |
parent | 4483ebd74d57839b31175c8fa082b08c5330175a (diff) |
Fixed luci.config
Diffstat (limited to 'libs/web')
-rw-r--r-- | libs/web/luasrc/config.lua | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/libs/web/luasrc/config.lua b/libs/web/luasrc/config.lua index dd3e01734..258f5e655 100644 --- a/libs/web/luasrc/config.lua +++ b/libs/web/luasrc/config.lua @@ -25,14 +25,9 @@ limitations under the License. ]]-- -local util = require "luci.util" - -local pcall = pcall -local require = require - - -module "luci.config" - -pcall(function() - setmetatable(_M, {__index=require "luci.model.uci".cursor():get_all("luci")}) -end) +module("luci.config", + function(m) + if pcall(require, "luci.model.uci") then + setmetatable(m, {__index = luci.model.uci.cursor():get_all("luci")}) + end + end)
\ No newline at end of file |