Remove special case for IE on Mac. No longer supported. Also fixes bug 28937: The...
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 14 May 2011 16:01:15 +0000 (16:01 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 14 May 2011 16:01:15 +0000 (16:01 +0000)
includes/RawPage.php

index c994cb7..c722c1c 100644 (file)
@@ -220,20 +220,6 @@ class RawPage {
                        header( 'HTTP/1.0 404 Not Found' );
                }
 
-               // Special-case for empty CSS/JS
-               //
-               // Internet Explorer for Mac handles empty files badly;
-               // particularly so when keep-alive is active. It can lead
-               // to long timeouts as it seems to sit there waiting for
-               // more data that never comes.
-               //
-               // Give it a comment...
-               if( strlen( $text ) == 0 &&
-                       ( $this->mContentType == 'text/css' ||
-                               $this->mContentType == 'text/javascript' ) ) {
-                       return '/* Empty */';
-               }
-
                return $this->parseArticleText( $text );
        }