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