diff --git a/addressbook/csv_import.php b/addressbook/csv_import.php index e8cec3d1f3..02ddfaa97c 100644 --- a/addressbook/csv_import.php +++ b/addressbook/csv_import.php @@ -416,11 +416,6 @@ } if(!$_POST['debug'] && !$empty) // dont import empty contacts { - if ($values['email'] && ($existing = $GLOBALS['egw']->contacts->search(array('email'=>$values['email']),false)) && - count($existing) == 1) - { - $values = array_merge($existing[0],$values); - } $GLOBALS['egw']->contacts->save($values); //echo "

adding: ".print_r($values,true)."

\n"; }