* Workaround possible bug in Firefox nightlies by properly removing the
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 18 Jun 2006 17:55:50 +0000 (17:55 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 18 Jun 2006 17:55:50 +0000 (17:55 +0000)
  Content-Encoding header instead of sending explicit 'identity' value
  in StreamFile

RELEASE-NOTES
includes/StreamFile.php

index 873d133..31ab0e0 100644 (file)
@@ -519,6 +519,10 @@ Some default configuration options have changed:
   interwikis and such. Not yet fully automated.
 * (bug 6344) Add Special:Uncategorizedimages page
 * (bug 6357) Update to Russian translation (ru)
+* Workaround possible bug in Firefox nightlies by properly removing the
+  Content-Encoding header instead of sending explicit 'identity' value
+  in StreamFile
+
 
 == Compatibility ==
 
index 8c3b537..8341718 100644 (file)
@@ -20,7 +20,7 @@ does not.</p>
        while( $status = ob_get_status() ) {
                ob_end_clean();
                if( $status['name'] == 'ob_gzhandler' ) {
-                       header( 'Content-Encoding: identity' );
+                       header( 'Content-Encoding:' );
                }
        }