Support

Search results for ""

Sorry, no results found. Perhaps you would like to search the documentation?
All Topics
Kosuke Ito

Exporting as UTF8 BOM CSV is broken

ACP insert BOM every separated csv file. So BOM are seen every 250 rows (default setting).

Simple fix at \ACP\Export\Exporter\CSV::export::


			// Writes UTF8 BOM for Excel support
			if ( $this->get_column_labels() ) {
				fprintf( $fh_memory, chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF ) );
			}
4 years, 10 months ago
Stefan van den Dungen Gronovius
Developer

Thank you very much for reporting and even taking the time to provide us with a fix.
I’ve changed the code and it will be available in the next release.

4 years, 10 months ago

You must be logged in to reply to this topic.