diff options
author | thomascube <thomas@roundcube.net> | 2011-01-29 11:31:23 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-01-29 11:31:23 +0000 |
commit | 6039aae3878aa5880415290cbc41af4bac4fdcb5 (patch) | |
tree | af67fca02fb859cb6863127d97c0a71680f69bb6 /program/include/rcmail.php | |
parent | cf2da2f9aacd1b13ad9019f44a3f1edd824cd015 (diff) |
Add groups support for LDAP address books, contributed by Andreas Dick
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 7f76ba4c3..ab2c16172 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -394,7 +394,7 @@ class rcmail $list[$id] = array( 'id' => $id, 'name' => $prop['name'], - 'groups' => false, + 'groups' => is_array($prop['groups']), 'readonly' => !$prop['writable'], 'autocomplete' => in_array('sql', $autocomplete) ); |