diff options
author | Steven Barth <steven@midlink.org> | 2008-04-05 18:35:33 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-05 18:35:33 +0000 |
commit | 9ba8d2aea994c832316f111354668f52de831043 (patch) | |
tree | 38dbb506c91f71486fef95dc98620c703c7347e0 /src/ffluci/cbi.lua | |
parent | 348dc7926806ce4cfe8a5bf8a9f63903469e53c8 (diff) |
* Remove ffluci.util.__file__ as it relies on debug information
* Added ffluci.debug for things that rely on debug information
* Fixed a bug regarding path detection when Luci is bytecompiled
Diffstat (limited to 'src/ffluci/cbi.lua')
-rw-r--r-- | src/ffluci/cbi.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ffluci/cbi.lua b/src/ffluci/cbi.lua index 5bc40499c8..1ccf2e56d2 100644 --- a/src/ffluci/cbi.lua +++ b/src/ffluci/cbi.lua @@ -38,8 +38,9 @@ local instanceof = ffluci.util.instanceof function load(cbimap) require("ffluci.fs") require("ffluci.i18n") + require("ffluci.config") - local cbidir = ffluci.fs.dirname(ffluci.util.__file__()) .. "/model/cbi/" + local cbidir = ffluci.config.path .. "/model/cbi/" local func, err = loadfile(cbidir..cbimap..".lua") if not func then |