From: Robert Kaiser Date: Mon, 25 May 2015 14:23:04 +0000 (+0200) Subject: Use actual name of Edge and EdgeHTML X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=commitdiff_plain;h=cbdcb61734834efb10a142a7c8e90b203bfe2c5b;hp=74ffcc37e6ee5d863799ebdae7e8b16153dd990e Use actual name of Edge and EdgeHTML --- diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index f5a5f8d..09415a7 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -360,8 +360,8 @@ class userAgent { $this->bot = false; } elseif (preg_match('|Edge/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { - $this->brand = 'Project Spartan'; - $this->version = null; + $this->brand = 'Edge'; + $this->version = $regs[1]; $this->bot = false; } elseif (preg_match('|Chromium/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { @@ -1061,7 +1061,7 @@ class userAgent { } } elseif (preg_match('|Edge/([0-9\.]+)|', $this->uastring, $regs)) { - $this->uadata['engine'] = 'edge'; + $this->uadata['engine'] = 'edgehtml'; $this->uadata['eng_version'] = $regs[1]; } elseif ((strpos($this->brand, 'Internet Explorer') !== false) || (strpos($this->brand, 'FrontPage') !== false)) {