Index: trunk/phase3/includes/WebRequest.php |
— | — | @@ -788,10 +788,10 @@ |
789 | 789 | && preg_match( '/\.[a-z]{1,4}$/i', $_SERVER['QUERY_STRING'] ) ) |
790 | 790 | { |
791 | 791 | // Bug 28235 |
792 | | - // Block only Internet Explorer 6, and requests with missing UA |
| 792 | + // Block only Internet Explorer, and requests with missing UA |
793 | 793 | // headers that could be IE users behind a privacy proxy. |
794 | 794 | if ( !isset( $_SERVER['HTTP_USER_AGENT'] ) |
795 | | - || preg_match( '/; *MSIE 6/', $_SERVER['HTTP_USER_AGENT'] ) ) |
| 795 | + || preg_match( '/; *MSIE/', $_SERVER['HTTP_USER_AGENT'] ) ) |
796 | 796 | { |
797 | 797 | return true; |
798 | 798 | } |