Hi, my csv had a problem: new lines.
I solved it with this few lines around line 266:
if ($profile_field['type'] == 'textarea') {
$notallowed = array("\r\n", "\n", "\r");
$value = str_replace($notallowed, " ", $value);
}

Thank you