From 08ae8d40a939654d2e4a1774853c5c5683b12268 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 21 Nov 2022 12:24:31 +0100 Subject: luci-base, luci-lua-runtime: fix "dispatched" and "requested" properties Ensure to properly emulate the "dispatched" and "requested" properties which refer to the executed and initially resolved menu node respectivey. Also stop exposing a `node` property in Lua context to maintain full compatibility with the old Lua runtime. Signed-off-by: Jo-Philipp Wich --- modules/luci-lua-runtime/luasrc/dispatcher.lua | 2 -- 1 file changed, 2 deletions(-) (limited to 'modules/luci-lua-runtime') diff --git a/modules/luci-lua-runtime/luasrc/dispatcher.lua b/modules/luci-lua-runtime/luasrc/dispatcher.lua index f97e84a69b..608b9b6674 100644 --- a/modules/luci-lua-runtime/luasrc/dispatcher.lua +++ b/modules/luci-lua-runtime/luasrc/dispatcher.lua @@ -12,8 +12,6 @@ context = setmetatable({}, { return _G.L.ctx.request_path elseif k == "requestargs" then return _G.L.ctx.request_args - elseif k == "requested" or k == "dispatched" then - return _G.L.node else return _G.L.ctx[k] end -- cgit v1.2.3