From: Jan Schneider Date: Tue, 27 Jul 2010 17:52:36 +0000 (+0200) Subject: Include anyone user when listing users in the ACL screen (Bug 9135). X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c2f1b9c05d75bdd9868c2f20c65b91352dbfab33;p=horde.git Include anyone user when listing users in the ACL screen (Bug 9135). --- diff --git a/imp/docs/CHANGES b/imp/docs/CHANGES index e8ed4996a..79255dedc 100644 --- a/imp/docs/CHANGES +++ b/imp/docs/CHANGES @@ -178,6 +178,7 @@ v5.0-git v4.3.8-cvs ---------- +[jan] Include "anyone" user when listing users in the ACL screen (Bug 9135). [mms] Turn DNS prefetching off when displaying untrusted message content (Ticket #8836). diff --git a/imp/lib/Prefs/Ui.php b/imp/lib/Prefs/Ui.php index 982f6ad70..5e8217a0c 100644 --- a/imp/lib/Prefs/Ui.php +++ b/imp/lib/Prefs/Ui.php @@ -712,7 +712,7 @@ class IMP_Prefs_Ui $t->set('noadmin', true); } else { $current_users = array_keys($curr_acl); - $new_user = array(); + $new_user = array('anyone'); foreach ($GLOBALS['registry']->callByPackage('listUsers', 'imp') as $user) { if (in_array($user, $current_users)) {