mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dataforms: Coerce number values for boolean fields
Makes more sense than coercing to a string, which would always be truthy.
This commit is contained in:
parent
533ab7a4ce
commit
fc677f515f
2 changed files with 15 additions and 2 deletions
|
@ -103,8 +103,11 @@ function form_t.form(layout, data, formtype)
|
|||
|
||||
if value ~= nil then
|
||||
if type(value) == "number" then
|
||||
-- TODO validate that this is ok somehow, eg check field.datatype
|
||||
value = ("%g"):format(value);
|
||||
if field_type == "boolean" then
|
||||
value = value ~= 0;
|
||||
else
|
||||
value = ("%g"):format(value);
|
||||
end
|
||||
end
|
||||
-- Add value, depending on type
|
||||
if field_type == "hidden" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue