diff --git a/ChangeLog b/ChangeLog index 186205f8f..4e7006921 100755 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,8 @@ $Source$ 2001-07-01 Loïc Chapeaux * left.php3: rewritten so it becomes as far as possible xhtml1.0 compliant. + * header.php3: rewritten styles so the font face is valid with non-latin1 + charsets. * spacer.gif was broken (strange display with NS). 2001-06-30 Marc Delisle diff --git a/header.inc.php3 b/header.inc.php3 index 42e2333e4..068434763 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -22,18 +22,25 @@ header('Content-Type: text/html; charset=' . $charset); phpMyAdmin diff --git a/left.php3 b/left.php3 index af1710175..9be5c3848 100755 --- a/left.php3 +++ b/left.php3 @@ -53,7 +53,7 @@ header('Content-Type: text/html; charset=' . $charset); // Hard coded font name and size depends on charset. This is a temporary and // uggly fix $font_family = ($charset == 'iso-8859-1') - ? 'Arial, Helvetica, sans-serif' + ? 'helvetica, arial, geneva, sans-serif' : 'sans-serif'; ?> body {font-family: ; font-size: 10pt}