mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
a4b456c857
2 changed files with 10 additions and 1 deletions
|
@ -94,6 +94,15 @@ function form_t.form(layout, data, formtype)
|
|||
end
|
||||
end
|
||||
|
||||
local media = field.media;
|
||||
if media then
|
||||
form:tag("media", { xmlns = "urn:xmpp:media-element", height = media.height, width = media.width });
|
||||
for _, val in ipairs(media) do
|
||||
form:tag("uri", { type = val.type }):text(val.uri):up()
|
||||
end
|
||||
form:up();
|
||||
end
|
||||
|
||||
if field.required then
|
||||
form:tag("required"):up();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue