• The Export Module for CSV is not working correctly. It is not adding a new line character at the end of each row.

    Resolution:
    Change this line on fileio/csv.php
    fwrite( $stdout, join( $csv, ',') );
    TO
    fwrite( $stdout, join( $csv, ',')."\n" );

    OR
    user fputcsv() instead.

    Thanks

    • This topic was modified 7 years, 10 months ago by Gravitate.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Bug with Export CSV’ is closed to new replies.