local c = context.tree
local track = {}
local args = {}
+ context.args = context.path
local n
for i, s in ipairs(request) do
c = c.nodes[s]
n = i
- if not c or c.leaf then
+ if not c then
break
end
for k, v in pairs(c) do
track[k] = v
end
+
+ if c.leaf then
+ break
+ end
end
if c and c.leaf then
if authen then
local user = authen(luci.sys.user.checkpasswd, def)
if not user or not luci.util.contains(accs, user) then
+ luci.http.status(403, "Forbidden")
return
else
local sid = luci.sys.uniqueid(16)