X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fobjectcache%2FObjectCache.php;h=eafa836a4ace7f8a67a37a9dfff308764535e1da;hb=9e2a081fcc286cb5486b2b73aba16908953e5873;hp=e4af26291b5082db3aef5b54f98c94e8b1dd251a;hpb=cb4b29fd9625f9d4db56863bb44811e361f4f478;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/objectcache/ObjectCache.php b/includes/objectcache/ObjectCache.php index e4af26291b..eafa836a4a 100644 --- a/includes/objectcache/ObjectCache.php +++ b/includes/objectcache/ObjectCache.php @@ -123,7 +123,7 @@ class ObjectCache { * @return ObjectCache */ static function newAccelerator( $params ) { - if ( function_exists( 'apc_fetch') ) { + if ( function_exists( 'apc_fetch' ) ) { $id = 'apc'; } elseif( function_exists( 'xcache_get' ) && wfIniGetBool( 'xcache.var_size' ) ) { $id = 'xcache';