24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-09-29 14:37:44 +02:00

minor bug fixes related to the use/conversion of/to exmpp (thanks to Karim Gemayel)

SVN Revision: 2733
This commit is contained in:
Christophe Romain 2009-11-06 14:36:41 +00:00
parent a1e9b55ead
commit bde4b7b057

View File

@ -132,7 +132,9 @@ get_options_xform(Lang, Options) ->
children = [?XMLCDATA(?NS_PUBSUB_SUBSCRIBE_OPTIONS_s)]}]}] ++ XFields}}. children = [?XMLCDATA(?NS_PUBSUB_SUBSCRIBE_OPTIONS_s)]}]}] ++ XFields}}.
parse_options_xform(XFields) -> parse_options_xform(XFields) ->
case exmpp_xml:get_child_elements(XFields) of case XFields of
[] -> {result, []};
_ -> case exmpp_xml:get_child_elements(XFields) of
[] -> {result, []}; [] -> {result, []};
[#xmlel{name = 'x'} = XEl] -> [#xmlel{name = 'x'} = XEl] ->
case jlib:parse_xdata_submit(XEl) of case jlib:parse_xdata_submit(XEl) of
@ -146,6 +148,7 @@ parse_options_xform(XFields) ->
end; end;
Other -> Other ->
Other Other
end
end. end.
%%==================================================================== %%====================================================================