util.dataforms: Fix verfication for booleans

This commit is contained in:
Florian Zeitz 2011-12-03 17:10:48 +01:00
parent 2dae99da75
commit df36a97275

View file

@ -252,7 +252,7 @@ field_readers["boolean"] =
field_verifiers["boolean"] =
function (data, field_tag, required)
data = field_readers["text-single"](field_tag);
if #data == 0 and required then
if ((not data) or (#data == 0)) and required then
return "Required value missing";
end
if data ~= "1" and data ~= "true" and data ~= "0" and data ~= "false" then