Skip to content

Commit

Permalink
prevent iconv warnings with //TRANSLIT//IGNORE
Browse files Browse the repository at this point in the history
  • Loading branch information
ikenfin committed Jun 25, 2018
1 parent a1ece84 commit 07276f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/controller/extension/module/foc_csv.php
Expand Up @@ -404,7 +404,7 @@ public function import () {
$out = fopen($importFile, 'w');

while ($line = fgets($src)) {
fwrite($out, iconv($encoding, $charset, $line));
fwrite($out, iconv($encoding, $charset . '//TRANSLIT//IGNORE', $line));
}

fclose($src);
Expand Down

0 comments on commit 07276f3

Please sign in to comment.