From 063ddc7f5d239657c7b0a5bf8b925fa85851a2be Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 15 Oct 2004 18:05:28 +0000 Subject: [PATCH] PDF inline output --- ChangeLog | 6 ++++-- pdf_schema.php | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9cd94d827..4638f0b9d 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,8 +6,10 @@ $Id$ $Source$ 2004-10-15 Marc Delisle - * 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ř * libraries/fpdf/fpdf.php: Updated to 1.52. diff --git a/pdf_schema.php b/pdf_schema.php index 1292b7812..523b90beb 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -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