Quote:
Originally posted by herby
Oops!
Running PHP Version 4.0.6
Will get that upgraded and see what happens.
Thanks,
Herby
|
Open getbrowser.php change
PHP Code:
function GetBrowserDOM2() {
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$htuagent = trim($_SERVER['HTTP_USER_AGENT']);
into
PHP Code:
function GetBrowserDOM2() {
global $HTTP_SERVER_VARS;
if (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) {
$htuagent = trim($HTTP_SERVER_VARS['HTTP_USER_AGENT']);
Which should make it work.