Index: branches/wmf/1.17wmf1/includes/WebRequest.php |
— | — | @@ -758,10 +758,10 @@ |
759 | 759 | && preg_match( '/\.[a-z]{1,4}$/i', $_SERVER['QUERY_STRING'] ) ) |
760 | 760 | { |
761 | 761 | // Bug 28235 |
762 | | - // Block only Internet Explorer 6, and requests with missing UA |
| 762 | + // Block only Internet Explorer, and requests with missing UA |
763 | 763 | // headers that could be IE users behind a privacy proxy. |
764 | 764 | if ( !isset( $_SERVER['HTTP_USER_AGENT'] ) |
765 | | - || preg_match( '/; *MSIE 6/', $_SERVER['HTTP_USER_AGENT'] ) ) |
| 765 | + || preg_match( '/; *MSIE/', $_SERVER['HTTP_USER_AGENT'] ) ) |
766 | 766 | { |
767 | 767 | return true; |
768 | 768 | } |