24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-10 21:47:01 +02:00

src/mod_echo.erl: Fix call to exmpp_xml:get_cdata_as_list/1.

SVN Revision: 1919
This commit is contained in:
Pablo Polvorin 2009-02-24 20:25:57 +00:00
parent 9b1e5928bd
commit 0f53fea903
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
* src/ejabberd_service.erl: Exmpp related fixed to the external
components service.
* src/mod_echo.erl: Fix call to exmpp_xml:get_cdata_as_list/1.
2009-02-23 Pablo Polvorin <pablo.polvorin@process-one.net>
* src/ejabberd_c2s.erl, src/mod_echo.erl, src/mod_roster.erl,
src/mod_roster_odbc.erl: Use exmpp_jid:to_binary/1 when possible.

View File

@ -194,7 +194,7 @@ do_client_version(enabled, From, To) ->
after 5000 -> % Timeout in miliseconds: 5 seconds
[]
end,
Values = [{Name, exmpp_xml:get_cdata_as_list(Children)} || #xmlel{name = Name, children = Children} <- Els],
Values = [{Name, exmpp_xml:get_cdata_as_list(El)} || #xmlel{name = Name} = El <- Els],
%% Print in log
Values_string1 = [io_lib:format("~n~s: ~p", [N, V]) || {N, V} <- Values],