diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-26 17:18:38 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-26 17:18:38 +0200 |
commit | baecd8becccd7786632c1cda895123293ceb1408 (patch) | |
tree | e33c882fe684e73fab73d77b1b16fe54ce9754ec /program/include/rcube_ldap.php | |
parent | 5bc1233de808442f8d412bf4394fda05b22f41d2 (diff) |
Move the hard-coded list of fields used to list contacts to a central location
Diffstat (limited to 'program/include/rcube_ldap.php')
-rw-r--r-- | program/include/rcube_ldap.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index 6a32a23ef..3a7fc1805 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -767,7 +767,9 @@ class rcube_ldap extends rcube_addressbook } // use VLV pseudo-search for autocompletion - if ($this->prop['vlv_search'] && $this->conn && join(',', (array)$fields) == 'name,firstname,surname,email') + $rcmail = rcmail::get_instance(); + + if ($this->prop['vlv_search'] && $this->conn && join(',', (array)$fields) == join(',', $rcmail->config->get('contactlist_fields'))) { // add general filter to query if (!empty($this->prop['filter']) && empty($this->filter)) |