diff options
author | alecpl <alec@alec.pl> | 2010-04-23 08:17:51 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-04-23 08:17:51 +0000 |
commit | dd0f19654ef3f30691c54527ec6bb0c827dc0aa3 (patch) | |
tree | ce1b1bbde57b21a30db552513ac6ba920a96bbd4 | |
parent | c791ea1d0f38c20a5413f82286eb339d7eeb14ad (diff) |
- merge r3543
-rw-r--r-- | program/include/rcube_contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php index 7014415ed..21e31b996 100644 --- a/program/include/rcube_contacts.php +++ b/program/include/rcube_contacts.php @@ -122,7 +122,7 @@ class rcube_contacts extends rcube_addressbook if (!$this->groups) return $results; - $sql_filter = $search ? "AND " . $this->db->ilike('name', '%'.$search.'%') : ''; + $sql_filter = $search ? " AND " . $this->db->ilike('name', '%'.$search.'%') : ''; $sql_result = $this->db->query( "SELECT * FROM ".get_table_name('contactgroups'). |