Fix to the empty CSV cells
-
This worked for me
File Admin.php
Changed lines 472-473
//$value = sanitize_text_field($value);
$values[$key] = implode(‘,’, $value);Adding UTF-8 BOM before line 512 so it will look like this
echo “\xEF\xBB\xBF”;
fputcsv($output,$pretty_columns);
- The topic ‘Fix to the empty CSV cells’ is closed to new replies.