summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-04-22 11:30:19 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-04-22 11:30:19 +0000
commit8877c8c2925e6d67d4c4022b359fd3d65d76b0b9 (patch)
tree436d02628c916435907742d048c3dc1a21ccf7bf
parent8065ef48c4226caff0c6ff1f9f1db2ad41209421 (diff)
- Use '=' operator instead of LIKE
git-svn-id: https://svn.roundcube.net/trunk@3530 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/rcube_contacts.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_contacts.php b/roundcubemail/program/include/rcube_contacts.php
index f243e1074..897d1f479 100644
--- a/roundcubemail/program/include/rcube_contacts.php
+++ b/roundcubemail/program/include/rcube_contacts.php
@@ -595,7 +595,7 @@ class rcube_contacts extends rcube_addressbook
"SELECT 1 FROM ".get_table_name('contactgroups').
" WHERE del<>1".
" AND user_id=?".
- " AND name LIKE ?",
+ " AND name=?",
$this->user_id,
$checkname);