Skip to content

Commit

Permalink
Merge pull request #3 from ebanx/feature/Change-CSV-Report
Browse files Browse the repository at this point in the history
Changes in function WriteCSV
vinivf committed Jun 8, 2015
2 parents dbee582 + 8018a62 commit 0f5f74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xlsxwriter.class.php
Original file line number Diff line number Diff line change
@@ -216,7 +216,7 @@ public function writeCSV(array $data, array $header_types=array() )
$output .= implode("\n", array_map(function($array) {
return implode(';', $array);
}, $data));
return print_r($output);
return $output;
}

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

0 comments on commit 0f5f74c

Please sign in to comment.