Skip to content

Commit 7865be4

Browse files
committed
Merge pull request #7 from ebanx/hotfix/csvlive
Fix WriteCsvLine
2 parents 05cf642 + 653b8f2 commit 7865be4

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
@@ -233,7 +233,7 @@ public function writeCSVLine(array $data, $type = null, $delimiter = ';') {
233233

234234
$output = '';
235235
$output .= implode($delimiter, $text) . "\n";
236-
return $output;
236+
echo $output;
237237
}
238238

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

0 commit comments

Comments
 (0)