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

@@ -99,6 +99,8 @@ if (!defined('PMA_USR_OS')) {
define('PMA_USR_OS', 'Linux');
} else if (strstr($HTTP_USER_AGENT, 'Unix')) {
define('PMA_USR_OS', 'Unix');
} else if (strstr($HTTP_USER_AGENT, 'OS/2')) {
define('PMA_USR_OS', 'OS/2');
} else {
define('PMA_USR_OS', 'Other');
}