X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=core%2Fsrc%2Fmodel%2Fuci.lua;h=39354bed190f7db243821ace526b0e48b7583360;hp=ca5b232eb37ebd21a76ca2c058e5ebc1464a60b6;hb=365d80765d3f08c457b0a373c395c8e1940e44be;hpb=c6c50b3ec60b284107f459e5923c146d515afd2a diff --git a/core/src/model/uci.lua b/core/src/model/uci.lua index ca5b232eb3..39354bed19 100644 --- a/core/src/model/uci.lua +++ b/core/src/model/uci.lua @@ -1,5 +1,5 @@ --[[ -FFLuCI - UCI mpdel +LuCI - UCI mpdel Description: Generalized UCI model @@ -23,16 +23,16 @@ See the License for the specific language governing permissions and limitations under the License. ]]-- -module("ffluci.model.uci", package.seeall) +module("luci.model.uci", package.seeall) -- Default savedir savedir = "/tmp/.uci" -- Test whether to load libuci-Wrapper or /sbin/uci-Wrapper if pcall(require, "uci") then - Session = require("ffluci.model.uci.libuci").Session + Session = require("luci.model.uci.libuci").Session else - Session = require("ffluci.model.uci.wrapper").Session + Session = require("luci.model.uci.wrapper").Session end -- The default Session