Index: branches/REL1_16/phase3/includes/WebRequest.php |
— | — | @@ -700,10 +700,10 @@ |
701 | 701 | && preg_match( '/\.[a-z]{1,4}$/i', $_SERVER['QUERY_STRING'] ) ) |
702 | 702 | { |
703 | 703 | // Bug 28235 |
704 | | - // Block only Internet Explorer 6, and requests with missing UA |
| 704 | + // Block only Internet Explorer, and requests with missing UA |
705 | 705 | // headers that could be IE users behind a privacy proxy. |
706 | 706 | if ( !isset( $_SERVER['HTTP_USER_AGENT'] ) |
707 | | - || preg_match( '/; *MSIE 6/', $_SERVER['HTTP_USER_AGENT'] ) ) |
| 707 | + || preg_match( '/; *MSIE/', $_SERVER['HTTP_USER_AGENT'] ) ) |
708 | 708 | { |
709 | 709 | return true; |
710 | 710 | } |