Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -124,6 +124,7 @@ |
125 | 125 | $this->sendCacheControl(); |
126 | 126 | wfDebug( "CACHED client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false ); |
127 | 127 | $this->disable(); |
| 128 | + @ob_end_clean(); // Don't output compressed blob |
128 | 129 | return true; |
129 | 130 | } else { |
130 | 131 | wfDebug( "READY client: $ismodsince ; user: $wgUser->mTouched ; page: $timestamp\n", false ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -469,6 +469,7 @@ |
470 | 470 | * (bug 2616) Fix proportional image scaling, giving correct height |
471 | 471 | * (bug 2640) Include width and height attributes on unscaled images |
472 | 472 | * Workaround for mysterious problem with bogus epoch If-Last-Modified reqs |
| 473 | +* (bug 1109) Suppress compressed output on 304 responses |
473 | 474 | |
474 | 475 | |
475 | 476 | === Caveats === |