[Openfirst-cvscommit] logger stats.php,1.1,1.2
Brought to you by:
xtimg
From: <i-...@us...> - 2003-10-01 00:12:56
|
Update of /cvsroot/openfirst/logger In directory sc8-pr-cvs1:/tmp/cvs-serv1965/logger Modified Files: stats.php Log Message: Fixed dependency on config/functions/browserid.php Index: stats.php =================================================================== RCS file: /cvsroot/openfirst/logger/stats.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** stats.php 30 Sep 2003 23:41:38 -0000 1.1 --- stats.php 1 Oct 2003 00:12:52 -0000 1.2 *************** *** 120,124 **** else{ if($browser!="totalpages"){ ! $browse=identify_browser($useragent->Name); if(isset($browsers[$browse])){ $browsers[$browse]+=$useragent->Value; --- 120,129 ---- else{ if($browser!="totalpages"){ ! if(function_exists("identify_browser")){ ! $browse=identify_browser($useragent->Name); ! } ! else { ! $browse=$useragent->Name; ! } if(isset($browsers[$browse])){ $browsers[$browse]+=$useragent->Value; *************** *** 127,131 **** $browsers[$browse]=$useragent->Value; } ! $platform=identify_platform($useragent->Name); if(isset($platforms[$platform])){ $platforms[$platform]+=$useragent->Value; --- 132,141 ---- $browsers[$browse]=$useragent->Value; } ! if(function_exists("identify_platform")){ ! $platform=identify_platform($useragent->Name); ! } ! else { ! $platform=$useragent->Name; ! } if(isset($platforms[$platform])){ $platforms[$platform]+=$useragent->Value; |