mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-10 16:58:46 +01:00
* src/mod_configure.erl: One ACL call was not virtual host compliant.
SVN Revision: 829
This commit is contained in:
parent
b1a3c639cb
commit
75448d953d
@ -1210,7 +1210,7 @@ set_form(_Host, ["config", "hostname"], _Lang, XData) ->
|
||||
{error, ?ERR_BAD_REQUEST}
|
||||
end;
|
||||
|
||||
set_form(_Host, ["config", "acls"], _Lang, XData) ->
|
||||
set_form(Host, ["config", "acls"], _Lang, XData) ->
|
||||
case lists:keysearch("acls", 1, XData) of
|
||||
{value, {_, Strings}} ->
|
||||
String = lists:foldl(fun(S, Res) ->
|
||||
@ -1220,7 +1220,7 @@ set_form(_Host, ["config", "acls"], _Lang, XData) ->
|
||||
{ok, Tokens, _} ->
|
||||
case erl_parse:parse_term(Tokens) of
|
||||
{ok, ACLs} ->
|
||||
case acl:add_list(ACLs, true) of
|
||||
case acl:add_list(Host, ACLs, true) of
|
||||
ok ->
|
||||
{result, []};
|
||||
_ ->
|
||||
|
Loading…
Reference in New Issue
Block a user