From e68adda7c37970130d5f62fabfb9995e65bc3f1e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 14 May 2011 16:01:15 +0000 Subject: [PATCH] Remove special case for IE on Mac. No longer supported. Also fixes bug 28937: The /* Empty */ comment inserted by RawPage::getArticleText should be localizable. --- includes/RawPage.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/includes/RawPage.php b/includes/RawPage.php index c994cb74e9..c722c1c18d 100644 --- a/includes/RawPage.php +++ b/includes/RawPage.php @@ -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 ); } -- 2.20.1