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() function return_array()
{ {
$this->data = array( $this->data = array(
'agent' = $this->BROWSER_AGENT, 'agent' => $this->get_agent(),
'version' = $this->BROWSER_VER, 'version' => $this->get_version(),
'platform' = $this->BROWSER_PLATFORM 'platform' => $this->get_platform()
); );
return $this->data; return $this->data;
} }
function get_agent () function get_agent()
{ {
return $this->BROWSER_AGENT; return $this->BROWSER_AGENT;
} }