Index: trunk/phase3/includes/objectcache/SqlBagOStuff.php |
— | — | @@ -361,7 +361,9 @@ |
362 | 362 | */ |
363 | 363 | protected function unserialize( $serial ) { |
364 | 364 | if ( function_exists( 'gzinflate' ) ) { |
365 | | - $decomp = @gzinflate( $serial ); |
| 365 | + wfSuppressWarnings(); |
| 366 | + $decomp = gzinflate( $serial ); |
| 367 | + wfRestoreWarnings(); |
366 | 368 | |
367 | 369 | if ( false !== $decomp ) { |
368 | 370 | $serial = $decomp; |