On the release version, the last line of the export CSV introduce a major bug :
the output is duplicate 2 times

// Add BOM for better Excel reading.
$output .= chr(0xEF) . chr(0xBB) . chr(0xBF) . $output;

the point "." is wrong here, it must be :

// Add BOM for better Excel reading.
$output = chr(0xEF) . chr(0xBB) . chr(0xBF) . $output;

And actually on my version, i just comment all the line because with excel you see wrong character.

Comments

Tomefa created an issue. See original summary.

tomefa’s picture

Title: Release error » Output CSV duplicate

  • Graber committed 11c951d on 7.x-1.x
    Issue #2914219 by Tomefa: Output CSV duplicate
    

Graber credited Graber.

graber’s picture

Assigned: tomefa » Unassigned
Status: Active » Fixed

Fixed and released, thanks for reporting!

graber’s picture

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.