From cbf5203c8b3f632aa6436bcf5328bc7667f5efb3 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Mon, 9 Jan 2012 20:46:23 +0000 Subject: [PATCH] Remove double charset conversion on header --- importexport/inc/class.importexport_export_csv.inc.php | 1 - 1 file changed, 1 deletion(-) diff --git a/importexport/inc/class.importexport_export_csv.inc.php b/importexport/inc/class.importexport_export_csv.inc.php index 7ce8ecb354..2e5103e806 100644 --- a/importexport/inc/class.importexport_export_csv.inc.php +++ b/importexport/inc/class.importexport_export_csv.inc.php @@ -176,7 +176,6 @@ class importexport_export_csv implements importexport_iface_export_record } } $mapping = ! empty( $this->mapping ) ? $this->mapping : array_keys ( $this->record ); - $mapping = $this->translation->convert( $mapping, $this->translation->charset(), $this->csv_charset ); self::fputcsv( $this->handle ,$mapping ,$this->csv_options['delimiter'], $this->csv_options['enclosure'] ); }