X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=94a17529da81a173d6753f21df773b75e3c438aa;hp=9f4bb2b09c63118e49df86a728d379ca35675ac6;hb=5b8eba2a5c4c224ecb1799a7341430018f5564fa;hpb=c18a447633cb933757c93d6e51a18856fb8dbf54;ds=sidebyside diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index 9f4bb2b..94a1752 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -417,6 +417,11 @@ class userAgent { $this->version = $regs[1]; $this->bot = true; } + elseif (preg_match('|Microsoft URL Control - ([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'Microsoft URL Control'; + $this->version = $regs[1]; + $this->bot = true; + } elseif (preg_match('|([0-9a-zA-Z\.+]+)_AC-Plug|', $this->uastring, $regs)) { $this->brand = 'AC-Plug'; $this->version = $regs[1]; @@ -556,7 +561,7 @@ class userAgent { 'NetResearchServer','LinkWalker','Zeus','W3C_Validator','ZyBorg','Ask Jeeves','ia_archiver', 'PingALink Monitoring Services','IlTrovatore-Setaccio','Nutch','Mercator','search.ch', 'appie','larbin','NutchCVS','ObjectsSearch','Webchat','Mediapartners-Google','Schmozilla', - 'FavOrg','findlinks','DataCha0s','','','','','','','','',''); + 'FavOrg','findlinks','DataCha0s','ichiro','Francis','','','','','','',''); if (in_array($this->brand, $botArray)) { $this->bot = true;