* 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>
* 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 ?
{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)