25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-12-22 17:28:25 +01:00

* src/mod_irc/mod_irc.erl: Bugfix in ACL check (thanks to Sergei

Golovan)

SVN Revision: 1061
This commit is contained in:
Badlop 2007-12-10 14:44:43 +00:00
parent bf239fac9d
commit a4449fe8d0
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-12-10 Badlop <badlop@process-one.net>
* src/mod_irc/mod_irc.erl: Bugfix in ACL check (thanks to Sergei
Golovan)
2007-12-10 Christophe Romain <christophe.romain@process-one.net>
* src/mod_pubsub/mod_pubsub.erl: database upgrade bugfix
@ -929,7 +934,7 @@
2007-06-22 Alexey Shchepin <alexey@sevcom.net>
* src/mod_irc/mod_irc.erl: Added an option for default IRC
encoding (thanks to Badlop)
encoding (thanks to Badlop) (EJAB-452)
* doc/guide.tex: Updated
* src/mod_disco.erl: Don't override accumulated value in

View File

@ -171,7 +171,7 @@ stop_supervisor(Host) ->
supervisor:delete_child(ejabberd_sup, Proc).
do_route(Host, ServerHost, Access, From, To, Packet, DefEnc) ->
case acl:match_rule(Host, Access, From) of
case acl:match_rule(ServerHost, Access, From) of
allow ->
do_route1(Host, ServerHost, From, To, Packet, DefEnc);
_ ->