12 lines
371 B
PHTML
12 lines
371 B
PHTML
<?php
|
|
if ($this->content) {
|
|
$content_type = 'application/csv-tab-delimited-table';
|
|
header('Content-Transfer-Encoding: none');
|
|
header('Content-type: ' . $content_type.'');
|
|
header('Cache-Control: private, max-age=0, must-revalidate');
|
|
header('Pragma: public');
|
|
ini_set('zlib.output_compression', '0');
|
|
echo $this->content;
|
|
} else {
|
|
echo $this->message;
|
|
} |