Include anyone user when listing users in the ACL screen (Bug 9135).
authorJan Schneider <jan@horde.org>
Tue, 27 Jul 2010 17:52:36 +0000 (19:52 +0200)
committerJan Schneider <jan@horde.org>
Tue, 27 Jul 2010 17:52:36 +0000 (19:52 +0200)
imp/docs/CHANGES
imp/lib/Prefs/Ui.php

index e8ed499..79255de 100644 (file)
@@ -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).
 
index 982f6ad..5e8217a 100644 (file)
@@ -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)) {