PDF inline output

This commit is contained in:
Marc Delisle
2004-10-15 18:05:28 +00:00
parent cded76261f
commit 063ddc7f5d
2 changed files with 6 additions and 4 deletions

View File

@@ -6,8 +6,10 @@ $Id$
$Source$
2004-10-15 Marc Delisle <lem9@users.sourceforge.net>
* pdf_schema.php: first change needed to work with new fpdf library
(still testing...)
* pdf_schema.php: new way to define font path,
needed with the new fpdf library; also now output inline,
I find it faster this way, please tell me if you prefer
the old dialog method and why.
2004-10-13 Michal Čihař <michal@cihar.com>
* libraries/fpdf/fpdf.php: Updated to 1.52.

View File

@@ -1048,8 +1048,8 @@ class PMA_RT
if (empty($filename)) {
$filename = $pdf_page_number . '.pdf';
}
$pdf->Output($db . '_' . $filename, TRUE);
//$pdf->Output('', TRUE);
//$pdf->Output($db . '_' . $filename, TRUE);
$pdf->Output($db . '_' . $filename, 'I'); // destination: Inline
} // end of the "PMA_RT_showRt()" method