diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-26 10:08:40 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-26 10:08:40 +0200 |
commit | 3427883c25efb2b0eb8f0e3a8fa6dac5e7f3275d (patch) | |
tree | 9f0aec170e10e83cbd34c6b88b0fb2ab202fe15d | |
parent | d675abc57104195b753d2c0d3a8a730e9595f99d (diff) | |
parent | b373ac82e4ad073eadf6ca5489a07b89ef7c6b07 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
-rw-r--r-- | program/lib/Roundcube/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_ldap.php b/program/lib/Roundcube/rcube_ldap.php index 323dac3ce..ff4467627 100644 --- a/program/lib/Roundcube/rcube_ldap.php +++ b/program/lib/Roundcube/rcube_ldap.php @@ -1532,7 +1532,7 @@ class rcube_ldap extends rcube_addressbook return array(); // use cached list for searching - if (!$this->cache || ($group_cache = $this->cache->get('groups')) === null) { + if (!$this->cache || !empty($this->prop['group_filters']) || ($group_cache = $this->cache->get('groups')) === null) { $group_cache = $this->_fetch_groups(); } |