Page 1 of 1

get_browser().....error

Posted: Fri Aug 21, 2009 5:45 pm
by cali_dotcom
hi, i'm trying to edit something on a site i didn't code myself so i downloaded the files and set them up on a virtual host on my local machine. i am using wamp server with php v 5.2.9-2. the problem is when i go the page on my local machine i get this error:
Notice: Trying to get property of non-object in C:\wamp\www\yikers\common\browser.php on line 18
here is the code:

Code: Select all

 
public function isIE()
    {
        $b = get_browser();
        
        if ($b->parent == 'IE 6.0' || $b->parent == 'IE 5.5' || $b->parent == 'IE 5.01')  //this is line 18
            return true;
        else
            return false;
    }
 
does anyone know what the problem could be?

Re: get_browser().....error

Posted: Fri Aug 21, 2009 5:54 pm
by SidewinderX
$b is not an object - it is an associative array as a result you access elements using the following syntax: $b['parent']

Re: get_browser().....error

Posted: Fri Aug 21, 2009 6:30 pm
by cali_dotcom
thanks man, that worked real good...