From f5371237aa5e044c05a059c2c5558f603110e968 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 20 May 2004 14:49:04 +0000 Subject: [PATCH] contents page orientation --- ChangeLog | 4 ++++ pdf_schema.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ad9a433e0..210f59016 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-05-20 Marc Delisle + * pdf_schema.php: set contents page (first page)'s orientation + to the same asked for the data dictionary + 2004-05-19 Marc Delisle * tbl_select.php: bug 956137, undefined $data: on the search page, PMA_foreignDropdown() must be called with no current value for diff --git a/pdf_schema.php b/pdf_schema.php index 1163fc4fe..cfb990456 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -1219,7 +1219,7 @@ class PMA_RT function PMA_RT_DOC($alltables ){ global $db, $pdf, $orientation; //TOC - $pdf->addpage("P"); + $pdf->addpage($GLOBALS['orientation']); $pdf->Cell(0,9, $GLOBALS['strTableOfContents'],1,0,'C'); $pdf->Ln(15); $i = 1;