From ec4b594c240bbdd4306f1d2b336f25ef6ee321c1 Mon Sep 17 00:00:00 2001 From: alecpl Date: Sun, 24 Jul 2011 10:14:13 +0000 Subject: - DOn't generate contact name here, it's not required --- program/steps/addressbook/save.inc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'program/steps/addressbook/save.inc') diff --git a/program/steps/addressbook/save.inc b/program/steps/addressbook/save.inc index a3fdde9f6..a8dd38f27 100644 --- a/program/steps/addressbook/save.inc +++ b/program/steps/addressbook/save.inc @@ -136,11 +136,6 @@ foreach ($GLOBALS['CONTACT_COLTYPES'] as $col => $colprop) { } } -// let a dedicated function or a plugin compose the full name if empty -if (empty($a_record['name'])) { - $a_record['name'] = rcube_addressbook::compose_display_name($a_record); -} - // do input checks (delegated to $CONTACTS instance) if (!$CONTACTS->validate($a_record)) { @@ -221,7 +216,7 @@ else { // show notice if existing contacts with same e-mail are found $existing = false; foreach ($CONTACTS->get_col_values('email', $a_record, true) as $email) { - if (($res = $CONTACTS->search('email', $email, false, false)) && $res->count) { + if (($res = $CONTACTS->search('email', $email, false, false, true)) && $res->count) { $OUTPUT->show_message('contactexists', 'notice', null, false); break; } -- cgit v1.2.3