|
From: John G. W. <jgw...@wc...> - 2012-01-05 16:02:54
|
Joel,
To get PDF working via the browser I had to change:
header( rlib_get_content_type($rlib));
to:
$my_header = split("\n", rlib_get_content_type($rlib));
foreach($my_header as $x) {
if($x != '')
header($x);
}
otherwise I got the output back in text format.
Worth a try.
John
|