* src/mod_muc/mod_muc_log.erl: Fix wrong return on check access log.

SVN Revision: 739
This commit is contained in:
Mickaël Rémond 2007-03-02 14:57:26 +00:00
parent ec67ec5dd0
commit 0be3fe1377
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-03-02 Mickael Remond <mickael.remond@process-one.net>
* src/mod_muc/mod_muc_log.erl: Fix wrong return on check access log.
2007-03-01 Alexey Shchepin <alexey@sevcom.net>
* src/msgs/ru.msg: Updated (thanks to Sergei Golovan)

View File

@ -76,7 +76,7 @@ check_access_log(Host, From) ->
case catch gen_server:call(get_proc_name(Host),
{check_access_log, Host, From}) of
{'EXIT', _Error} ->
false;
deny;
Res ->
Res
end.