mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/mod_configure.erl: Bugfix: Show only virtual host users on admin disco for all users (EJAB-268) (Thanks to Badlop).
SVN Revision: 816
This commit is contained in:
parent
0b0c889bca
commit
dcf883005d
@ -1,5 +1,8 @@
|
|||||||
2007-07-17 Mickael Remond <mickael.remond@process-one.net>
|
2007-07-17 Mickael Remond <mickael.remond@process-one.net>
|
||||||
|
|
||||||
|
* src/mod_configure.erl: Bugfix: Show only virtual host users
|
||||||
|
on admin disco for all users (EJAB-268) (Thanks to Badlop).
|
||||||
|
|
||||||
* src/mod_muc/mod_muc_log.erl: Recognise more URI schemes in
|
* src/mod_muc/mod_muc_log.erl: Recognise more URI schemes in
|
||||||
logged HTML (EJAB-279) (Thanks to qu1j0t3).
|
logged HTML (EJAB-279) (Thanks to qu1j0t3).
|
||||||
|
|
||||||
|
@ -408,8 +408,8 @@ get_local_items(Host, ["online users"], _Server, _Lang) ->
|
|||||||
get_local_items(Host, ["all users"], _Server, _Lang) ->
|
get_local_items(Host, ["all users"], _Server, _Lang) ->
|
||||||
{result, get_all_vh_users(Host)};
|
{result, get_all_vh_users(Host)};
|
||||||
|
|
||||||
get_local_items(_Host, ["all users", [$@ | Diap]], _Server, _Lang) ->
|
get_local_items(Host, ["all users", [$@ | Diap]], _Server, _Lang) ->
|
||||||
case catch ejabberd_auth:dirty_get_registered_users() of
|
case catch ejabberd_auth:get_vh_registered_users(Host) of
|
||||||
{'EXIT', _Reason} ->
|
{'EXIT', _Reason} ->
|
||||||
?ERR_INTERNAL_SERVER_ERROR;
|
?ERR_INTERNAL_SERVER_ERROR;
|
||||||
Users ->
|
Users ->
|
||||||
|
Loading…
Reference in New Issue
Block a user