Index: branches/5.2.x/core/install/install_toolkit.php =================================================================== diff -u -N -r15176 -r15333 --- branches/5.2.x/core/install/install_toolkit.php (.../install_toolkit.php) (revision 15176) +++ branches/5.2.x/core/install/install_toolkit.php (.../install_toolkit.php) (revision 15333) @@ -1,6 +1,6 @@ getSystemConfig('Misc', 'CacheHandler'); } + $cache_handler = $this->Application->makeClass('kCache'); + $cache_handlers = Array ( 'Fake' => 'None', 'Memcache' => 'Memcached', 'XCache' => 'XCache', 'Apc' => 'Alternative PHP Cache' ); @@ -1133,7 +1135,7 @@ unset($cache_handlers[$class_prefix]); } else { - $handler = new $handler_class('localhost:11211'); + $handler = new $handler_class($cache_handler, 'localhost:11211'); /* @var $handler FakeCacheHandler */ if ( !$handler->isWorking() ) {