From ac2df4e65814cc1c8d05bba19717b6a3099b657a Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 5 May 2013 13:11:34 +0200 Subject: Fix csv import from Thunderbird with French localization (#1489059) --- program/lib/Roundcube/rcube_csv2vcard.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'program/lib') diff --git a/program/lib/Roundcube/rcube_csv2vcard.php b/program/lib/Roundcube/rcube_csv2vcard.php index 0d3276b84..506a4b740 100644 --- a/program/lib/Roundcube/rcube_csv2vcard.php +++ b/program/lib/Roundcube/rcube_csv2vcard.php @@ -353,6 +353,12 @@ class rcube_csv2vcard if (!empty($this->local_label_map)) { for ($i = 0; $i < $size; $i++) { $label = $this->local_label_map[$elements[$i]]; + + // special localization label + if ($label && $label[0] == '_') { + $label = substr($label, 1); + } + if ($label && !empty($this->csv2vcard_map[$label])) { $map2[$i] = $this->csv2vcard_map[$label]; } -- cgit v1.2.3