summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-11-27 22:03:50 +0000
committerSteven Barth <steven@midlink.org>2008-11-27 22:03:50 +0000
commit6b6359a7efb61bf837c0c7ca0eedbaa457778cfe (patch)
tree5064efd92522c2ead32c5aa09918c1d4d1a9b9af /libs
parent076f2f84264eca344e4b8e4ec2ab5c23298f6190 (diff)
Enable rmempty by default
Diffstat (limited to 'libs')
-rw-r--r--libs/cbi/luasrc/cbi.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/libs/cbi/luasrc/cbi.lua b/libs/cbi/luasrc/cbi.lua
index f733560ca..0808fb1b7 100644
--- a/libs/cbi/luasrc/cbi.lua
+++ b/libs/cbi/luasrc/cbi.lua
@@ -1095,7 +1095,7 @@ function AbstractValue.__init__(self, map, section, option, ...)
--self.cast = "string"
self.track_missing = false
- --self.rmempty = false
+ self.rmempty = true
self.default = nil
self.size = nil
self.optional = false
@@ -1106,9 +1106,6 @@ function AbstractValue.prepare(self)
if not self.override_scheme
and self.map:get_scheme(self.section.sectiontype, self.option) then
local vs = self.map:get_scheme(self.section.sectiontype, self.option)
- if self.rmempty == nil then
- self.rmempty = not vs.required
- end
if self.cast == nil then
self.cast = (vs.type == "list") and "list" or "string"
end