diff --git a/ChangeLog b/ChangeLog index 473c85350..93bf6815d 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-06-02 Loïc Chapeaux + * libraries/display_tbl.inc.php3, line 1413: xhtml fix. + * libraries/fpdf/fpdf.php3: light optimizations and fixes. + 2002-06-01 Loïc Chapeaux * db_details_structure.php3, lines 440-441; Documentation.html; pdf_schema.php3; libraries/fpdf/*: diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index 650528ebc..6ff292644 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -1410,7 +1410,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){ echo '' . "\n" . '_newobj(); - $this->_out('<_out('<_out('<title)) { $this->_out('/Title (' . $this->_escape($this->title) . ')'); } @@ -1154,9 +1158,10 @@ class FPDF if ($family == 'arial') { $family = 'helvetica'; } - $style = strtoupper($style); if ($family == 'symbol' || $family == 'zapfdingbats') { $style = ''; + } else { + $style = strtoupper($style); } if (strpos(' ' . $style, 'U')) { $this->underline = TRUE;