Fix unhandled track values for leafs
This commit is contained in:
parent
830ca24abb
commit
20116047b0
1 changed files with 7 additions and 1 deletions
|
@ -125,18 +125,23 @@ function dispatch(request)
|
|||
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
|
||||
|
@ -184,6 +189,7 @@ function dispatch(request)
|
|||
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)
|
||||
|
|
Loading…
Reference in a new issue