Index: trunk/phase3/includes/LocalisationCache.php |
— | — | @@ -377,9 +377,9 @@ |
378 | 378 | */ |
379 | 379 | protected function readPHPFile( $_fileName, $_fileType ) { |
380 | 380 | // Disable APC caching |
381 | | - $_apcEnabled = ini_set( 'apc.enabled', '0' ); |
| 381 | + $_apcEnabled = ini_set( 'apc.cache_by_default', '0' ); |
382 | 382 | include( $_fileName ); |
383 | | - ini_set( 'apc.enabled', $_apcEnabled ); |
| 383 | + ini_set( 'apc.cache_by_default', $_apcEnabled ); |
384 | 384 | |
385 | 385 | if ( $_fileType == 'core' || $_fileType == 'extension' ) { |
386 | 386 | $data = compact( self::$allKeys ); |