From 6514c2dc5a7df096888849c0e947a6b6c5c6091c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Kuc=CC=81?= Date: Mon, 25 May 2015 16:07:03 +0200 Subject: [PATCH] utf patch --- Service/DataExporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Service/DataExporter.php b/Service/DataExporter.php index 7a100fd..b97a58b 100644 --- a/Service/DataExporter.php +++ b/Service/DataExporter.php @@ -408,7 +408,7 @@ public function setColumns(Array $columns) */ public function prepareCSV() { - return implode("\n", $this->data); + return chr(239) . chr(187) . chr(191). implode("\n", $this->data); } /**