? profile_cvs-233158.patch Index: profile_csv.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/profile_csv/profile_csv.module,v retrieving revision 1.10 diff -u -p -r1.10 profile_csv.module --- profile_csv.module 21 Jul 2008 00:47:04 -0000 1.10 +++ profile_csv.module 28 Mar 2009 09:04:21 -0000 @@ -251,6 +251,9 @@ function _profile_csv_get_profile($uid=0 $value = $value['year'] .'-'. $value['month'] .'-'. $value['day']; } } + elseif ($profile_field['type'] == 'textarea') { + $value = trim($value); + } $profile_result[] = $value; } return $profile_result; @@ -273,4 +276,4 @@ function _profile_csv_header() { } return implode(",", $row) ."\n"; -} \ No newline at end of file +}