We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8e65c commit 0adcfacCopy full SHA for 0adcfac
admin/helpers/cvs.php
@@ -41,6 +41,7 @@ public static function loadCVS($content, $encoding, $delimiter = ';') {
41
if ($encoding != "UTF-8") {
42
$content = iconv($encoding, "UTF-8"."//TRANSLIT", $content);
43
}
44
+ if (substr($content,0,3) == "\357\273\277") { $content = substr($content,3); } //Remove known BOM
45
return self::cvs2array($content, $delimiter);
46
47
0 commit comments