Skip to content

Commit 1cf54ea

Browse files
committed
Save csv as it is, do not throw away utf-8.
1 parent 918715a commit 1cf54ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Gwt/Processor/CsvWriter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ private function saveData($data, $finalName)
206206
}
207207
}
208208

209-
if (strlen($data) > 1 && file_put_contents($finalName, utf8_decode($data))) {
209+
if (strlen($data) > 1 && file_put_contents($finalName, $data)) {
210210
return true;
211211
} else {
212212
return false;

0 commit comments

Comments
 (0)