Active
Project:
Profile CSV
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Apr 2010 at 10:32 UTC
Updated:
8 Apr 2010 at 10:32 UTC
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