This should make PDF's work in the broken IE/PDF/SSL implementation

This commit is contained in:
james 2007-11-14 20:53:35 +00:00
parent 152d3ce0ba
commit f39178585b

View File

@ -746,6 +746,7 @@ class lpdf
header("Content-type: application/pdf");
header("Content-disposition: inline; filename=sfiab_".$filename.".pdf");
header("Content-length: ".strlen($pdfdata));
header("Pragma: public");
echo $pdfdata;
}