Hope this is a real fix this time

This commit is contained in:
Miles Lott 2001-04-07 15:22:57 +00:00
parent 94e7363845
commit 6297a4d8c6

View File

@ -100,15 +100,15 @@
function return_array()
{
$this->data = array(
'agent' = $this->BROWSER_AGENT,
'version' = $this->BROWSER_VER,
'platform' = $this->BROWSER_PLATFORM
'agent' => $this->get_agent(),
'version' => $this->get_version(),
'platform' => $this->get_platform()
);
return $this->data;
}
function get_agent ()
function get_agent()
{
return $this->BROWSER_AGENT;
}