mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
detecting MS Edge as html::$user_agent="edge" and html::$ua_version="12.*", even if some report only "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
This commit is contained in:
parent
b18d373624
commit
d8255179d8
@ -69,7 +69,7 @@ class html
|
||||
$parts = array_pop($all_parts);
|
||||
foreach($all_parts as $p)
|
||||
{
|
||||
if ($p[1] == 'Chrome')
|
||||
if ($p[1] == 'Chrome' && $parts[1] != 'Edge')
|
||||
{
|
||||
$parts = $p;
|
||||
break;
|
||||
@ -91,6 +91,12 @@ class html
|
||||
{
|
||||
self::$user_agent = 'firefox';
|
||||
}
|
||||
// MS Edge sometimes reports just "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"
|
||||
if (self::$user_agent == 'mozilla' && self::$ua_version == '5.0')
|
||||
{
|
||||
self::$user_agent = 'edge';
|
||||
self::$ua_version = '12.0';
|
||||
}
|
||||
self::$ua_mobile = preg_match('/(iPhone|iPod|iPad|Android|SymbianOS|Blackberry|Kindle|Opera Mobi|Windows Phone)/i',
|
||||
$_SERVER['HTTP_USER_AGENT'], $matches) ? strtolower($matches[1]) : null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user