* set .pageaction = false transparently in cbi SimpleForm constructor
authorSteven Barth <steven@midlink.org>
Sat, 1 Nov 2008 17:10:50 +0000 (17:10 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 1 Nov 2008 17:10:50 +0000 (17:10 +0000)
libs/cbi/luasrc/cbi.lua

index 316b74f35e72c666127bdd4b15b093984985c1e9..ff5296e35f7aab2506ade37ec4ee9bb604aa209e 100644 (file)
@@ -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, ...)