Small dispatcher improvement
authorSteven Barth <steven@midlink.org>
Fri, 5 Sep 2008 19:17:48 +0000 (19:17 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 5 Sep 2008 19:17:48 +0000 (19:17 +0000)
libs/web/luasrc/dispatcher.lua

index 599d652..fd2be1e 100644 (file)
@@ -325,12 +325,7 @@ function createtree()
        -- Load default translation
        require "luci.i18n".loadc("default")
        
-       local scope = setmetatable({}, {__index = _G})
-       for k,v in pairs(luci.dispatcher) do
-               if type(v) == "function" then
-                       scope[k] = v
-               end
-       end
+       local scope = setmetatable({}, {__index = luci.dispatcher})
 
        for k, v in pairs(index) do
                scope._NAME = k