Skip to content

Commit 0f5f74c

Browse files
committed
Merge pull request #3 from ebanx/feature/Change-CSV-Report
Changes in function WriteCSV
2 parents dbee582 + 8018a62 commit 0f5f74c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xlsxwriter.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function writeCSV(array $data, array $header_types=array() )
216216
$output .= implode("\n", array_map(function($array) {
217217
return implode(';', $array);
218218
}, $data));
219-
return print_r($output);
219+
return $output;
220220
}
221221

222222
public function writeSheet(array $data, $sheet_name='', array $header_types=array() )

0 commit comments

Comments
 (0)