r21726 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r21725‎ | r21726 | r21727 >
Date:20:53, 30 April 2007
Author:brion
Status:old
Tags:
Comment:
* (bug 7629) Fix $wgBrowserBlackList to avoid false positive on MSIE
when certain plugins are present which alter the user agent
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/DefaultSettings.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/DefaultSettings.php
@@ -1962,9 +1962,9 @@
19631963 *
19641964 * Reference: http://www.psychedelix.com/agents/index.shtml
19651965 */
1966 - '/^Mozilla\/2\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
1967 - '/^Mozilla\/3\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
1968 - '/^Mozilla\/4\.[^ ]+ .*?\((?!compatible).*; [UIN]/',
 1966+ '/^Mozilla\/2\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
 1967+ '/^Mozilla\/3\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
 1968+ '/^Mozilla\/4\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
19691969
19701970 /**
19711971 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
Index: trunk/phase3/RELEASE-NOTES
@@ -369,6 +369,8 @@
370370 - don't emit too many list close tags after an invisible header
371371 - don't emit too many final list close tags if last header is invisible
372372 - don't emit TOC when there are no visible headers
 373+* (bug 7629) Fix $wgBrowserBlackList to avoid false positive on MSIE
 374+ when certain plugins are present which alter the user agent
373375
374376
375377 == Maintenance ==