Aleksander Machniak
2014-12-18 aafccefb88f6ac6cebb73426115eb9fba30f306e
Properly set fuzzy_search for vlv searches
1 files modified
4 ■■■■ changed files
program/lib/Roundcube/rcube_ldap.php 4 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_ldap.php
@@ -765,9 +765,9 @@
        if ($this->prop['vlv_search'] && $this->ready && join(',', (array)$fields) == join(',', $list_fields)) {
            $this->result = new rcube_result_set(0);
            $search_suffix = $this->prop['fuzzy_search'] && $mode != 1 ? '*' : '';
            $this->ldap->config_set('fuzzy_search', intval($this->prop['fuzzy_search'] && $mode != 1));
            $ldap_data = $this->ldap->search($this->base_dn, $this->prop['filter'], $this->prop['scope'], $this->prop['attributes'],
                array('search' => $value . $search_suffix /*, 'sort' => $this->prop['sort'] */));
                array('search' => $value /*, 'sort' => $this->prop['sort'] */));
            if ($ldap_data === false) {
                return $this->result;
            }