bug 821512

This commit is contained in:
Marc Delisle
2003-10-18 11:03:25 +00:00
parent f952077b62
commit fb509e2020
2 changed files with 6 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-10-18 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php3: bug 821512, Safari 1.0 v85.5 and fonts
2003-10-17 Marc Delisle <lem9@users.sourceforge.net>
* browse_foreigners.php3: bug 825473: PMA_jsFormat() needed on alert()
* tbl_query_box.php3, libraries/bookmark.lib.php3:

View File

@@ -589,8 +589,10 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
// Opera)...
// and a beta version of Safari did also, but not the final 1.0 version
// so I remove || PMA_USR_BROWSER_AGENT == 'SAFARI'
// but we got a report that Safari 1.0 build 85.5 needs it!
else if (PMA_USR_OS == 'Mac'
&& (PMA_USR_BROWSER_AGENT == 'OMNIWEB' || PMA_USR_BROWSER_AGENT == 'OPERA')) {
&& (PMA_USR_BROWSER_AGENT == 'OMNIWEB' || PMA_USR_BROWSER_AGENT == 'OPERA' || PMA_USR_BROWSER_AGENT == 'SAFARI')) {
$font_size = 'x-small';
$font_biggest = 'large';
$font_bigger = 'medium';