From: Steven Barth Date: Sun, 16 Nov 2008 13:52:39 +0000 (+0000) Subject: Assign correct path attribute to nodes X-Git-Tag: 0.8.2~29 X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=1ecec8981cb15c547659022cb05eb2a2c2640fc4 Assign correct path attribute to nodes --- diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index b0c35d08f..4d41e5f3e 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -414,7 +414,6 @@ function node(...) local c = _create_node({...}) c.module = getfenv(2)._NAME - c.path = arg c.auto = nil return c @@ -430,10 +429,11 @@ function _create_node(path, cache) local c = cache[name] if not c then + local new = {nodes={}, auto=true, path=util.clone(path)} local last = table.remove(path) + c = _create_node(path, cache) - local new = {nodes={}, auto=true} c.nodes[last] = new cache[name] = new