summaryrefslogtreecommitdiffhomepage
path: root/libs/web/luasrc/dispatcher.lua
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-10-30 19:10:08 +0000
committerSteven Barth <steven@midlink.org>2008-10-30 19:10:08 +0000
commitb202a403ff38453c978c7ad0d972525cd81c7b99 (patch)
tree97100abf112009f7df13e9f7b029d90b524ec5c8 /libs/web/luasrc/dispatcher.lua
parent2d4f21e9552eb5bc7fed66628ed12610c4cc8f2b (diff)
Publish status data
Conflicts: libs/web/luasrc/dispatcher.lua
Diffstat (limited to 'libs/web/luasrc/dispatcher.lua')
-rw-r--r--libs/web/luasrc/dispatcher.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua
index 9025529d7..03e7c7d65 100644
--- a/libs/web/luasrc/dispatcher.lua
+++ b/libs/web/luasrc/dispatcher.lua
@@ -517,11 +517,11 @@ function cbi(model)
end
http.header("X-CBI-State", state or 0)
- luci.template.render("cbi/header")
+ luci.template.render("cbi/header", {state = state})
for i, res in ipairs(maps) do
res:render()
end
- luci.template.render("cbi/footer")
+ luci.template.render("cbi/footer", {state = state})
end
end