diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-28 20:19:22 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-10-28 20:19:22 +0000 |
| commit | 6274167272f5399fffcc7bb21a81670aa99e67bb (patch) | |
| tree | 11cca8fb8b6465ba95f5f33efb5f08f6f94a6ffe /roundcubemail/program/include/rcube_ldap.php | |
| parent | 47aadecc93ab3641f06db896b2e10525bfb2adc1 (diff) | |
Avoid errors
git-svn-id: https://svn.roundcube.net/trunk@5373 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_ldap.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_ldap.php b/roundcubemail/program/include/rcube_ldap.php index e00a17c29..facc735d4 100644 --- a/roundcubemail/program/include/rcube_ldap.php +++ b/roundcubemail/program/include/rcube_ldap.php @@ -713,7 +713,7 @@ class rcube_ldap extends rcube_addressbook } // use VLV pseudo-search for autocompletion - if ($this->prop['vlv_search'] && $this->conn && join(',', $fields) == 'email,name') + if ($this->prop['vlv_search'] && $this->conn && join(',', (array)$fields) == 'email,name') { // add general filter to query if (!empty($this->prop['filter']) && empty($this->filter)) |
