Files
luos/thirdparty/html2ps_pdf/destination.browser.class.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

11 lines
352 B
PHP

<?php
class DestinationBrowser extends DestinationHTTP {
function headers($content_type) {
return array(
"Content-Disposition:inline; filename=".$this->get_filename().".".$content_type->default_extension,
"Content-Transfer-Encoding: binary",
"Cache-Control: private"
);
}
}
?>