diff options
author | thomascube <thomas@roundcube.net> | 2008-10-21 09:41:32 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-10-21 09:41:32 +0000 |
commit | b58f11841539035f8fa06c2a0e64dd9199d6a089 (patch) | |
tree | 15acefd04d57c6efd295f2d8b8d364f86f69dee7 /program/steps/addressbook/import.inc | |
parent | a2451ccbc994a1de54be7afd118832991d1f83aa (diff) |
Improve vcard import (#1485502); try utf-8 first in charset detection
Diffstat (limited to 'program/steps/addressbook/import.inc')
-rw-r--r-- | program/steps/addressbook/import.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/import.inc b/program/steps/addressbook/import.inc index 93452eccd..59490973c 100644 --- a/program/steps/addressbook/import.inc +++ b/program/steps/addressbook/import.inc @@ -58,7 +58,7 @@ function rcmail_import_confirm($attrib) global $IMPORT_STATS; $vars = get_object_vars($IMPORT_STATS); - $vars['names'] = join(', ', $IMPORT_STATS->names); + $vars['names'] = join(', ', array_map('Q', $IMPORT_STATS->names)); return html::p($attrib, Q(rcube_label(array( 'name' => 'importconfirm', |