X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=0b2279b98ddee0ac2a24d4295a26a6df4661a952;hp=f87badba4b5c0d98a62c697f1a877182c2d470c9;hb=fe42635cb2d19ca21d3229f28b15a89c9ad30836;hpb=1c090da414dd7b8b416db89b423fa02bfcccc1ff diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index f87badb..0b2279b 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -297,6 +297,11 @@ class userAgent { $this->version = $regs[1]; $this->bot = false; } + elseif (preg_match('|Maemo 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];