X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=49184a93cdc0fe01d04d85697bc1af6ac1c3e241;hp=dbcad2737e6d74de9a860a577208cc155c722f07;hb=646effd390bbc84c70fae8879758ee5cea377522;hpb=a3e499ad3709e3d59996f3f0bb22f7983f64fcc2 diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index dbcad27..49184a9 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -242,6 +242,11 @@ class userAgent { $this->version = $regs[1]; $this->bot = false; } + elseif (preg_match('|Tablet browser ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'microB'; + $this->version = $regs[1]; + $this->bot = false; + } elseif (preg_match('|Opera\/([^\(]+) \(.*; Opera Mini; |', $this->uastring, $regs)) { $this->brand = 'Opera Mini'; $this->version = $regs[1];