X-Git-Url: https://git-public.kairo.at/?a=blobdiff_plain;ds=sidebyside;f=include%2Fclasses%2Fuseragent.php-class;h=22dc491be76ab42239daa637314fdd145878796a;hb=38123d976bdb3a8fa30dbe5341e52eb6f96d61d6;hp=09415a7b852673120f2303e2cbe13ea942c821a7;hpb=cbdcb61734834efb10a142a7c8e90b203bfe2c5b;p=php-utility-classes.git diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index 09415a7..22dc491 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -410,6 +410,12 @@ class userAgent { $this->bot = true; $this->mobile = true; } + elseif (preg_match('|FxiOS/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'Firefox for iOS'; + $this->version = $regs[1]; + $this->bot = false; + $this->mobile = true; + } elseif (preg_match('|Safari/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { if (preg_match('| Mobile(/[0-9a-zA-Z\.+]+)? ?Safari/|', $this->uastring)) { $this->brand = 'Mobile Safari'; @@ -1234,7 +1240,7 @@ class userAgent { $this->uadata['eng_version'] = null; } } - elseif ($this->hasEngine('edge')) { + elseif ($this->hasEngine('edgehtml')) { if (preg_match('#Mozilla/5.0 \(([^;]+); (WOW64|Win64); ([^\);]+)\)#', $this->uastring, $regs)) { $this->uadata['os'] = $regs[1].' ('.$regs[2].')'; }