|
@@ 2939-2941 (lines=3) @@
|
| 2936 |
|
switch ($bInfo['BROWSER']) { |
| 2937 |
|
case 'net': |
| 2938 |
|
$bInfo['VERSION'] = (float)substr($useragent, 8); |
| 2939 |
|
if (strpos($useragent, 'Netscape6/') !== false) { |
| 2940 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape6/'), 10); |
| 2941 |
|
} |
| 2942 |
|
// Will we ever know if this was a typo or intention...?! :-( |
| 2943 |
|
if (strpos($useragent, 'Netscape/6') !== false) { |
| 2944 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape/6'), 10); |
|
@@ 2943-2945 (lines=3) @@
|
| 2940 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape6/'), 10); |
| 2941 |
|
} |
| 2942 |
|
// Will we ever know if this was a typo or intention...?! :-( |
| 2943 |
|
if (strpos($useragent, 'Netscape/6') !== false) { |
| 2944 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape/6'), 10); |
| 2945 |
|
} |
| 2946 |
|
if (strpos($useragent, 'Netscape/7') !== false) { |
| 2947 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape/7'), 9); |
| 2948 |
|
} |
|
@@ 2946-2948 (lines=3) @@
|
| 2943 |
|
if (strpos($useragent, 'Netscape/6') !== false) { |
| 2944 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape/6'), 10); |
| 2945 |
|
} |
| 2946 |
|
if (strpos($useragent, 'Netscape/7') !== false) { |
| 2947 |
|
$bInfo['VERSION'] = (float)substr(strstr($useragent, 'Netscape/7'), 9); |
| 2948 |
|
} |
| 2949 |
|
break; |
| 2950 |
|
case 'msie': |
| 2951 |
|
$tmp = strstr($useragent, 'MSIE'); |