Commit a2ee8ade authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Fixed incorrect namespace for Options elements. JM-157


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@942 b35dd754-fafc-0310-a699-88a17e54d16e
parent d2a24408
......@@ -244,7 +244,7 @@ public class XFormFieldImpl implements FormField {
}
public Element asXMLElement() {
Element option = DocumentHelper.createElement("option");
Element option = DocumentHelper.createElement(QName.get("option", "jabber:x:data"));
if (getLabel() != null) {
option.addAttribute("label", getLabel());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment