25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-12-22 17:28:25 +01:00

* src/mod_private_odbc: Bugfix: an internal error was returned

instead of the actual private data. This is now working as expected.
(EJAB-165)

SVN Revision: 699
This commit is contained in:
Mickaël Rémond 2006-12-21 09:03:53 +00:00
parent ea92c3cf2f
commit c2f3d4f9a6
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-12-21 Mickael Remond <mickael.remond@process-one.net>
* src/mod_private_odbc: Bugfix: an internal error was returned
instead of the actual private data. This is now working as expected.
2006-12-21 Alexey Shchepin <alexey@sevcom.net> 2006-12-21 Alexey Shchepin <alexey@sevcom.net>
* src/ejd2odbc.erl: Bugfix * src/ejd2odbc.erl: Bugfix

View File

@ -103,7 +103,9 @@ get_data(LUser, LServer, [El | Els], Res) ->
%% MREMOND: I wonder when the query could return a vcard ? %% MREMOND: I wonder when the query could return a vcard ?
{selected, ["vcard"], []} -> {selected, ["vcard"], []} ->
get_data(LUser, LServer, Els, get_data(LUser, LServer, Els,
[El | Res]) [El | Res]);
_ ->
get_data(LUser, LServer, Els,[El | Res])
end; end;
_ -> _ ->
get_data(LUser, LServer, Els, Res) get_data(LUser, LServer, Els, Res)