* src/odbc/ejabberd_odbc.erl: Bugfix

SVN Revision: 475
This commit is contained in:
Alexey Shchepin 2005-12-22 05:38:04 +00:00
parent 559b5cae14
commit 0035c63399
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-12-22 Alexey Shchepin <alexey@sevcom.net>
* src/odbc/ejabberd_odbc.erl: Bugfix
2005-12-21 Mickael Remond <mickael.remond@process-one.net>
* src/odbc/mysql.sql: Database description for MySQL Database 4.1 (Max

View File

@ -50,7 +50,7 @@ sql_query(Host, Query) ->
sql_transaction(Host, Queries) when is_list(Queries) ->
F = fun() ->
lists:foreach(fun(Query) ->
R = sql_query(Host, Query)
sql_query_t(Query)
end,
Queries)
end,