X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=libs%2Fweb%2Fluasrc%2Fdispatcher.lua;h=89fa0d22fc15cc4a924d6ac9615b64487cab93f5;hp=0d48acd14a64eab4da82deba2b1acd17bd1ac5b5;hb=8fdb12c4d12c67d101f0c273d3484658a0c3f6b9;hpb=8368432a63567d73101a9ea05f7f862065ba0cff diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua index 0d48acd14..89fa0d22f 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -672,14 +672,18 @@ local function _cbi(self, ...) local pageaction = true http.header("X-CBI-State", state or 0) - tpl.render("cbi/header", {state = state}) + if not config.noheader then + tpl.render("cbi/header", {state = state}) + end for i, res in ipairs(maps) do res:render() if res.pageaction == false then pageaction = false end end - tpl.render("cbi/footer", {pageaction=pageaction, state = state, autoapply = config.autoapply}) + if not config.nofooter then + tpl.render("cbi/footer", {pageaction=pageaction, state = state, autoapply = config.autoapply}) + end end --- Create a CBI model dispatching target.