diff --git a/addressbook/inc/import/Import_from_Outlook_-_Deutsch b/addressbook/inc/import/Import_from_Outlook_-_Deutsch index 29ffcb3cd4..ccb8a4c6df 100644 --- a/addressbook/inc/import/Import_from_Outlook_-_Deutsch +++ b/addressbook/inc/import/Import_from_Outlook_-_Deutsch @@ -171,6 +171,7 @@ $entry[$i]['email_home_type'] = 'INTERNET'; $entry[$i]['adr_one_type'] = 'intl'; $entry[$i]['adr_two_type'] = 'intl'; + $entry[$i]['fn'] = $entry[$i]['n_given'] . ' ' . $entry[$i]['n_family']; //echo '
'; $contacts->add($GLOBALS['phpgw_info']['user']['account_id'],$entry[$i],$access,$cat_id); } diff --git a/addressbook/inc/import/Import_from_Outlook_-_English b/addressbook/inc/import/Import_from_Outlook_-_English index ec1d8d6016..01297389cf 100644 --- a/addressbook/inc/import/Import_from_Outlook_-_English +++ b/addressbook/inc/import/Import_from_Outlook_-_English @@ -167,6 +167,7 @@ $entry[$i]['email_home_type'] = 'INTERNET'; $entry[$i]['adr_one_type'] = 'intl'; $entry[$i]['adr_two_type'] = 'intl'; + $entry[$i]['fn'] = $entry[$i]['n_given'] . ' ' . $entry[$i]['n_family']; //echo '
'; $contacts->add($GLOBALS['phpgw_info']['user']['account_id'],$entry[$i],$access,$cat_id); }