From: Brion Vibber Date: Sun, 18 Jun 2006 17:55:50 +0000 (+0000) Subject: * Workaround possible bug in Firefox nightlies by properly removing the X-Git-Tag: 1.31.0-rc.0~56743 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=9a829ff1a505cdde8e67668aca5b11549cdac4d5;p=lhc%2Fweb%2Fwiklou.git * Workaround possible bug in Firefox nightlies by properly removing the Content-Encoding header instead of sending explicit 'identity' value in StreamFile --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 873d1331d3..31ab0e048b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/includes/StreamFile.php b/includes/StreamFile.php index 8c3b5372a7..83417185fd 100644 --- a/includes/StreamFile.php +++ b/includes/StreamFile.php @@ -20,7 +20,7 @@ does not.

while( $status = ob_get_status() ) { ob_end_clean(); if( $status['name'] == 'ob_gzhandler' ) { - header( 'Content-Encoding: identity' ); + header( 'Content-Encoding:' ); } }