From: Steven Barth Date: Sat, 1 Nov 2008 17:10:50 +0000 (+0000) Subject: * set .pageaction = false transparently in cbi SimpleForm constructor X-Git-Tag: 0.9.0~1034 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=e29810c534f5c98e6dd6f6ced226cb0b75c6fe95 * set .pageaction = false transparently in cbi SimpleForm constructor --- 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, ...)