I had the same problem.
The solution i used will only work for php >= 5.3.0
You need to comment out line 73 and 74 in members-import.php :
// split into values
//$arr_values = str_replace('"', '', $row);
//$arr_values = split(",", $arr_values);
and add this line :
$arr_values = str_getcsv($row, ',', '"', '\\');