diff options
Diffstat (limited to 'skins')
-rw-r--r-- | skins/common/wikibits.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/common/wikibits.js b/skins/common/wikibits.js index acdd7281..94f23a9c 100644 --- a/skins/common/wikibits.js +++ b/skins/common/wikibits.js @@ -29,7 +29,7 @@ if (clientPC.indexOf('opera') != -1) { // avoiding false positives from moronic extensions that append to the IE UA // string (bug 23171) var ie6_bugs = false; -if ( /MSIE ([0-9]{1,}[\.0-9]{0,})/.exec( clientPC ) != null +if ( /msie ([0-9]{1,}[\.0-9]{0,})/.exec( clientPC ) != null && parseFloat( RegExp.$1 ) <= 6.0 ) { ie6_bugs = true; } |