aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMickaël Rémond <mickael.remond@process-one.net>2006-12-21 09:03:53 +0000
committerMickaël Rémond <mickael.remond@process-one.net>2006-12-21 09:03:53 +0000
commitc2f3d4f9a641eaa21df63ea4d7d3b4495341987a (patch)
tree984439e96da2dc6fa622574d46b5e3f2fc9052fd /src
parent* src/ejd2odbc.erl: Bugfix (diff)
* 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
Diffstat (limited to 'src')
-rw-r--r--src/mod_private_odbc.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mod_private_odbc.erl b/src/mod_private_odbc.erl
index 45e07233a..acefa214a 100644
--- a/src/mod_private_odbc.erl
+++ b/src/mod_private_odbc.erl
@@ -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)