Bug #32834 ยป 32834.diff
t3lib/class.t3lib_div.php | ||
---|---|---|
}
|
||
}
|
||
// remove UTF-8 Byte Object Marker (BOM)
|
||
if (substr($content, 0, 3) === pack('CCC', 0xef, 0xbb, 0xbf)) {
|
||
$content = substr($content, 3);
|
||
}
|
||
return $content;
|
||
}
|
||