On ExportToCsvUtf16le.php
// Excel does not like \n characters in UTF-16LE, so we replace with a space
$text = str_replace("\n", ' ', $text);
THIS needs to be done in ExportToCsvUtf8.php too, but the code is different and i don’t know where to change… Any help now?