mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +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:
parent
ea92c3cf2f
commit
c2f3d4f9a6
@ -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>
|
||||
|
||||
* src/ejd2odbc.erl: Bugfix
|
||||
|
@ -103,7 +103,9 @@ get_data(LUser, LServer, [El | Els], Res) ->
|
||||
%% MREMOND: I wonder when the query could return a vcard ?
|
||||
{selected, ["vcard"], []} ->
|
||||
get_data(LUser, LServer, Els,
|
||||
[El | Res])
|
||||
[El | Res]);
|
||||
_ ->
|
||||
get_data(LUser, LServer, Els,[El | Res])
|
||||
end;
|
||||
_ ->
|
||||
get_data(LUser, LServer, Els, Res)
|
||||
|
Loading…
Reference in New Issue
Block a user