summaryrefslogtreecommitdiffhomepage
path: root/libs/cbi
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-11-01 17:10:50 +0000
committerSteven Barth <steven@midlink.org>2008-11-01 17:10:50 +0000
commite29810c534f5c98e6dd6f6ced226cb0b75c6fe95 (patch)
treea332eb8837ec744e13c5116f01395e38140b161e /libs/cbi
parentaf51f7718e0a93789e119c7d989e97c5b36072e8 (diff)
* set .pageaction = false transparently in cbi SimpleForm constructor
Diffstat (limited to 'libs/cbi')
-rw-r--r--libs/cbi/luasrc/cbi.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/cbi/luasrc/cbi.lua b/libs/cbi/luasrc/cbi.lua
index 316b74f35..ff5296e35 100644
--- a/libs/cbi/luasrc/cbi.lua
+++ b/libs/cbi/luasrc/cbi.lua
@@ -436,6 +436,7 @@ function SimpleForm.__init__(self, config, title, description, data)
self.data = data or {}
self.template = "cbi/simpleform"
self.dorender = true
+ self.pageaction = false
end
function SimpleForm.parse(self, ...)