Bad copy and paste, here should be iso-8859-2 (thanks Marc!).

This commit is contained in:
Michal Čihař
2005-12-04 14:01:25 +00:00
parent dc5cd6d778
commit c350f65e74
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-12-04 Michal Čihař <michal@cihar.com>
* pdf_schema.php: Bad copy and paste, here should be iso-8859-2 (thanks
Marc!).
2005-12-03 Marc Delisle <lem9@users.sourceforge.net> 2005-12-03 Marc Delisle <lem9@users.sourceforge.net>
* export.php, libraries/config.default.php, libraries/export/pdf.php, * export.php, libraries/config.default.php, libraries/export/pdf.php,
libraries/display_export.php, lang/*.php: experimental PDF export libraries/display_export.php, lang/*.php: experimental PDF export

View File

@@ -1103,7 +1103,7 @@ class PMA_RT
$this->ff = 'FreeSans'; $this->ff = 'FreeSans';
$pdf->AddFont('FreeSans','','FreeSans.php'); $pdf->AddFont('FreeSans','','FreeSans.php');
$pdf->AddFont('FreeSans','B','FreeSansBold.php'); $pdf->AddFont('FreeSans','B','FreeSansBold.php');
} else if ($GLOBALS['charset'] == 'utf-8') { } else if ($GLOBALS['charset'] == 'iso-8859-2') {
// fonts added to phpMyAdmin and considered non-standard by fpdf // fonts added to phpMyAdmin and considered non-standard by fpdf
// (Note: those tahoma fonts are iso-8859-2 based) // (Note: those tahoma fonts are iso-8859-2 based)
$this->ff == 'tahoma'; $this->ff == 'tahoma';