Index: install/install_toolkit.php =================================================================== --- install/install_toolkit.php (revision 15331) +++ install/install_toolkit.php (working copy) @@ -1122,6 +1122,8 @@ $current = $this->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() ) {