diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-02-05 16:12:37 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-02-05 16:12:37 +0100 |
commit | ec2185a1cb2a0d412ab9e916618972bc4c70f68c (patch) | |
tree | 76bbc06cdde8d67daf44ce11406d8a18c7175f90 /program/include/rcmail.php | |
parent | c5a5f989a9bf91927e6bb627f9f789800ce02fad (diff) |
Add special config attribute 'group_filters' to specify a fixed list of groups to be listed in the leftmost pane, each having individual base-dn/filter parameters for contact listing
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 70dba4192..a149db1f6 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -287,7 +287,7 @@ class rcmail extends rcube $list[$id] = array( 'id' => $id, 'name' => html::quote($prop['name']), - 'groups' => is_array($prop['groups']), + 'groups' => !empty($prop['groups']) || !empty($prop['group_filters']), 'readonly' => !$prop['writable'], 'hidden' => $prop['hidden'], 'autocomplete' => in_array($id, $autocomplete) |