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

Fix exmpp bug in mod_pubsub_odbc

This commit is contained in:
Badlop 2010-06-17 15:55:06 +02:00
parent f32332cdfc
commit e0bdbcf063

View File

@ -3759,8 +3759,8 @@ odbc_conn(Host) ->
lists:dropwhile(fun(A) -> A/=$. end, Host) -- ".".
%% escape value for database storage
escape({_U, _H, _R}=JID)->
ejabberd_odbc:escape(exmpp_jid:to_list(JID));
escape({U, H, R}=JID)->
ejabberd_odbc:escape(exmpp_jid:to_list(U, H, R));
escape(Value)->
ejabberd_odbc:escape(Value).
%%%% helpers