X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=e5e91c5720baf8e62a1c33473f261af60208292e;hp=3dff7ae5ff0b114e7ae5aa9f245345feb3e09a2e;hb=55fef093d1027a06f8047e45148d71b48bb6b7d2;hpb=d09178b60cc069c8a6926eebacbc27fe74a60f55 diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index 3dff7ae..e5e91c5 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -349,7 +349,7 @@ class userAgent { $this->version = $regs[1]; $this->bot = false; } - elseif (preg_match('|Konqueror/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + elseif (preg_match('|Konqueror/([0-9a-zA-Z\.+]+)|i', $this->uastring, $regs)) { $this->brand = 'Konqueror'; $this->version = $regs[1]; $this->bot = false; @@ -1491,6 +1491,9 @@ class userAgent { elseif ($this->uadata['os'] == 'Windows NT 6.3') { $this->uadata['os'] = 'Windows 8.1'; } elseif ($this->uadata['os'] == 'Windows NT 6.3 (Win64)') { $this->uadata['os'] = 'Windows 8.1 (64bit)'; } elseif ($this->uadata['os'] == 'Windows NT 6.3 (WOW64)') { $this->uadata['os'] = 'Windows 8.1 (64bit)'; } + elseif ($this->uadata['os'] == 'Windows NT 6.4') { $this->uadata['os'] = 'Windows 10'; } + elseif ($this->uadata['os'] == 'Windows NT 6.4 (Win64)') { $this->uadata['os'] = 'Windows 10 (64bit)'; } + elseif ($this->uadata['os'] == 'Windows NT 6.4 (WOW64)') { $this->uadata['os'] = 'Windows 10 (64bit)'; } elseif ($this->uadata['os'] == 'Win95') { $this->uadata['os'] = 'Windows 95'; } elseif ($this->uadata['os'] == 'Win98') { $this->uadata['os'] = 'Windows 98'; } elseif ($this->uadata['os'] == 'WinNT') { $this->uadata['os'] = 'Windows NT'; }