diff options
author | Steven Barth <steven@midlink.org> | 2008-11-01 17:11:02 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-11-01 17:11:02 +0000 |
commit | ea9b377ec5585bc3a5745a485f84f3fba8a4935a (patch) | |
tree | 72c7c45195a7290898388ae3a9d49e00045a3047 /libs/web | |
parent | e29810c534f5c98e6dd6f6ced226cb0b75c6fe95 (diff) |
Merge pageactions
Diffstat (limited to 'libs/web')
-rw-r--r-- | libs/web/luasrc/dispatcher.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index fe5f656ba..51f6d9695 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -499,7 +499,7 @@ function template(name) end --- Create a CBI model dispatching target. --- @param model CBI model tpo be rendered +-- @param model CBI model to be rendered function cbi(model, config) config = config or {} return function(...) @@ -521,12 +521,16 @@ function cbi(model, config) end end + local pageaction = true http.header("X-CBI-State", state or 0) luci.template.render("cbi/header", {state = state}) for i, res in ipairs(maps) do res:render() + if res.pageaction == false then + pageaction = false + end end - luci.template.render("cbi/footer", {state = state, autoapply = config.autoapply}) + luci.template.render("cbi/footer", {pageaction=pageaction, state = state, autoapply = config.autoapply}) end end |