From 1526badaced03b2c5bc5febcb6e699e0bd183780 Mon Sep 17 00:00:00 2001 From: Gukhwan Cho Date: Thu, 13 Aug 2015 14:09:43 +0900 Subject: [PATCH] fixed wrong replace of favorite Change-Id: I9db3e047b601eccfbb248575c0407bdba045d311 Signed-off-by: Gukhwan Cho --- server/db/ctsvc_db_plugin_contact.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/db/ctsvc_db_plugin_contact.c b/server/db/ctsvc_db_plugin_contact.c index 5689a1a..05d9287 100644 --- a/server/db/ctsvc_db_plugin_contact.c +++ b/server/db/ctsvc_db_plugin_contact.c @@ -2376,8 +2376,8 @@ static int __ctsvc_db_contact_replace_record(contacts_record_h record, int conta "sort_name=?, reverse_sort_name=?, " "sortkey=?, reverse_sortkey=?, uid=?, ringtone_path=?, vibration=?, " "message_alert =?, image_thumbnail_path=?", - version, (int)time(NULL), - contact->has_phonenumber, contact->has_email, contact->is_favorite, + version, (int)time(NULL), contact->is_favorite, + contact->has_phonenumber, contact->has_email, contact->display_source_type, contact->display_name_language, contact->reverse_display_name_language); -- 2.7.4