mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.dataforms: Skip all fields for the 'cancel' form type
XEP-0004 says: > a data form of type "cancel" SHOULD NOT contain any <field/> elements. The title and instructions don't seem to be of much value in this case either. I'm not aware of 'cancel' being used anywhere, so this should break nothing. Early return is always nice.
This commit is contained in:
parent
90a519fc70
commit
03cb429034
1 changed files with 3 additions and 0 deletions
|
@ -28,6 +28,9 @@ end
|
|||
function form_t.form(layout, data, formtype)
|
||||
if not formtype then formtype = "form" end
|
||||
local form = st.stanza("x", { xmlns = xmlns_forms, type = formtype });
|
||||
if formtype == "cancel" then
|
||||
return form;
|
||||
end
|
||||
if layout.title then
|
||||
form:tag("title"):text(layout.title):up();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue