mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dataforms: More robust handling of field values, especially booleans
Ensure that a non-nil data[field_name] always overrides the field's default, and that values of boolean 'false' are always rendered in the form.
This commit is contained in:
parent
24ff76428f
commit
bdb4a84ec4
1 changed files with 7 additions and 2 deletions
|
@ -42,9 +42,14 @@ function form_t.form(layout, data, formtype)
|
|||
form:text_tag("desc", field.desc);
|
||||
end
|
||||
|
||||
local value = (data and data[field.name]) or field.value;
|
||||
local value;
|
||||
if data and data[field.name] ~= nil then
|
||||
value = data[field.name];
|
||||
else
|
||||
value = field.value;
|
||||
end
|
||||
|
||||
if value then
|
||||
if value ~= nil then
|
||||
-- Add value, depending on type
|
||||
if field_type == "hidden" then
|
||||
if type(value) == "table" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue