X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fobjectcache%2FSqlBagOStuff.php;h=6d356581515af52ac5ad1d97d055244ca7e63245;hp=6691f73d2e30206bcf4df4106e1ad452e33ad74c;hb=a2c8c2969420a0f150c03f76e3a0bf9028fcda43;hpb=095a2a05b2aaccff26d7b871194a4edccd092707 diff --git a/includes/objectcache/SqlBagOStuff.php b/includes/objectcache/SqlBagOStuff.php index 6691f73d2e..6d35658151 100644 --- a/includes/objectcache/SqlBagOStuff.php +++ b/includes/objectcache/SqlBagOStuff.php @@ -681,9 +681,9 @@ class SqlBagOStuff extends BagOStuff { */ protected function unserialize( $serial ) { if ( function_exists( 'gzinflate' ) ) { - MediaWiki\suppressWarnings(); + Wikimedia\suppressWarnings(); $decomp = gzinflate( $serial ); - MediaWiki\restoreWarnings(); + Wikimedia\restoreWarnings(); if ( false !== $decomp ) { $serial = $decomp;