undefined variables

This commit is contained in:
Marc Delisle
2002-07-06 23:46:51 +00:00
parent cc16007737
commit d2749fa7c8
2 changed files with 5 additions and 4 deletions

View File

@@ -14,6 +14,7 @@ $Source$
* pdf_pages.php3: bug 574637 undefined index
* db_details_structure.php3: remove a PMA_backquote added today that
introduces a bug
* pdf_schema.php3: undefined variables
2002-07-05 Alexander M. Turek <rabus@users.sourceforge.net>
* header.inc.php3: Tried to fix bug #571409 (Zend Accelerator problems).

View File

@@ -95,8 +95,8 @@ class PMA_PDF extends FPDF
*/
var $x_min;
var $y_min;
var $l_marg;
var $t_marg;
var $l_marg = 10;
var $t_marg = 10;
var $scale;
var $title;
@@ -278,9 +278,9 @@ class PMA_PDF extends FPDF
function PMA_PDF_die($error_message = '')
{
global $cfg;
global $server, $lang, $db;
global $server, $lang, $db, $convcharset;
global $charset, $text_dir, $strRunning, $strDatabase;
echo "trace" . $convcharset;
include('./header.inc.php3');
echo '<p><b>PDF - '. $GLOBALS['strError'] . '</b></p>' . "\n";