Fix bug where base_dn setting was ignored inside group_filters (#5720)

pull/6833/head
Aleksander Machniak 7 years ago
parent 6b16e0d593
commit bcdba37a82

@ -2,6 +2,7 @@ CHANGELOG Roundcube Webmail
===========================
- Fix regression in LDAP fuzzy search where it always used prefix search instead (#5713)
- Fix bug where base_dn setting was ignored inside group_filters (#5720)
RELEASE 1.1.8
-------------

@ -899,7 +899,7 @@ class rcube_ldap extends rcube_addressbook
protected function extended_search($count = false)
{
$prop = $this->group_id ? $this->group_data : $this->prop;
$base_dn = $this->group_id ? $this->groups_base_dn : $this->base_dn;
$base_dn = $this->group_id ? $prop['base_dn'] : $this->base_dn;
$attrs = $count ? array('dn') : $this->prop['attributes'];
$entries = array();

Loading…
Cancel
Save