patch #497632 - Support for OS/2 browsers

This commit is contained in:
Loïc Chapeaux
2001-12-29 17:25:16 +00:00
parent ab4a775dd8
commit e42e4d88f5
4 changed files with 18 additions and 0 deletions

View File

@@ -669,6 +669,14 @@ if (!defined('PMA_COMMON_LIB_INCLUDED')){
$font_smaller = 'small';
$font_smallest = 'x-small';
}
// OS/2 browser
else if (PMA_USR_OS == 'OS/2'
&& PMA_USR_BROWSER_AGENT == 'OPERA') {
$font_size = 'small';
$font_bigger = 'medium';
$font_smaller = 'x-small';
$font_smallest = 'x-small';
}
else {
$font_size = 'small';
$font_bigger = 'large';