* Improved the $wgBrowserBlackList regex for IE on OS9, and commented.
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Fri, 15 Apr 2005 21:54:45 +0000 (21:54 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Fri, 15 Apr 2005 21:54:45 +0000 (21:54 +0000)
includes/DefaultSettings.php

index 8ac177c..4c9c56f 100644 (file)
@@ -1129,8 +1129,19 @@ $wgCategoryMagicGallery = true;
  */
 $wgBrowserBlackList = array(
        "/Mozilla\/4\.78 \[en\] \(X11; U; Linux/",
-       # MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
-       "/Mozilla\/4.0 \(compatible; MSIE 5.0; Mac_PowerPC\)/"
+       /**
+        * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
+        *
+        * Known useragents:
+        * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
+        * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
+        * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
+        * - [...]
+        *
+        * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
+        * @link http://en.wikipedia.org/wiki/Template%3AOS9
+        */
+       "/Mozilla\/4\.0 \(compatible; MSIE 5\.\d+; Mac_PowerPC\)/"
 );
 
 /**