mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
util.dataforms: Set default value for form type argument
This commit is contained in:
parent
f072535414
commit
aa1b2624bd
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ local function new(layout)
|
||||||
end
|
end
|
||||||
|
|
||||||
function form_t.form(layout, data, formtype)
|
function form_t.form(layout, data, formtype)
|
||||||
local form = st.stanza("x", { xmlns = xmlns_forms, type = formtype or "form" });
|
if not formtype then formtype = "form" end
|
||||||
|
local form = st.stanza("x", { xmlns = xmlns_forms, type = formtype });
|
||||||
if layout.title then
|
if layout.title then
|
||||||
form:tag("title"):text(layout.title):up();
|
form:tag("title"):text(layout.title):up();
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue