diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-12-01 14:26:52 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-12-01 14:26:52 +0100 |
commit | f864495b7b7ab577e3aba5f06b34f92649de4a4b (patch) | |
tree | cd426af16fda5de577d31cc4a3899892928678ca /program/lib | |
parent | cf7471eb8608740a02b8ef3d1ca4899096e028fc (diff) |
Fix import of multiple contact email addresses from Outlook-csv format (#1490169)
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube_csv2vcard.php | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/program/lib/Roundcube/rcube_csv2vcard.php b/program/lib/Roundcube/rcube_csv2vcard.php index 8eff4d56c..5f6ccd128 100644 --- a/program/lib/Roundcube/rcube_csv2vcard.php +++ b/program/lib/Roundcube/rcube_csv2vcard.php @@ -52,9 +52,9 @@ class rcube_csv2vcard 'company' => 'organization', //'company_main_phone' => '', 'department' => 'department', - //'email_2_address' => '', //@TODO + 'email_2_address' => 'email:other', //'email_2_type' => '', - //'email_3_address' => '', //@TODO + 'email_3_address' => 'email:other', //'email_3_type' => '', 'email_address' => 'email:pref', //'email_type' => '', @@ -186,9 +186,9 @@ class rcube_csv2vcard //'company_main_phone' => "Company Main Phone", 'department' => "Department", //'directory_server' => "Directory Server", - //'email_2_address' => "E-mail 2 Address", + 'email_2_address' => "E-mail 2 Address", //'email_2_type' => "E-mail 2 Type", - //'email_3_address' => "E-mail 3 Address", + 'email_3_address' => "E-mail 3 Address", //'email_3_type' => "E-mail 3 Type", 'email_address' => "E-mail Address", //'email_type' => "E-mail Type", @@ -554,7 +554,13 @@ class rcube_csv2vcard foreach ($this->map as $idx => $name) { $value = $data[$idx]; if ($value !== null && $value !== '') { - $contact[$name] = $value; + if (!empty($contact[$name])) { + $contact[$name] = (array) $contact[$name]; + $contact[$name][] = $value; + } + else { + $contact[$name] = $value; + } } } |