From 0b0caee40b6c68263a349b54bc989ceb53af1b63 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sun, 05 May 2013 07:11:34 -0400 Subject: [PATCH] Fix csv import from Thunderbird with French localization (#1489059) --- program/lib/Roundcube/rcube_csv2vcard.php | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/program/lib/Roundcube/rcube_csv2vcard.php b/program/lib/Roundcube/rcube_csv2vcard.php index b0e9c23..fa22fa4 100644 --- a/program/lib/Roundcube/rcube_csv2vcard.php +++ b/program/lib/Roundcube/rcube_csv2vcard.php @@ -389,6 +389,12 @@ 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]; } -- Gitblit v1.9.1