aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-03-31 20:23:33 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 20:23:33 +0200
commit776160a7e35a1f82325b7acf573906310791c573 (patch)
tree16aaf40c7234794f873d0ad39ad6552ff36d9dd8 /phpBB/common.php
parentb12f9a285546641415d9ea2dd9e3a3dba6527d1a (diff)
downloadforums-776160a7e35a1f82325b7acf573906310791c573.tar
forums-776160a7e35a1f82325b7acf573906310791c573.tar.gz
forums-776160a7e35a1f82325b7acf573906310791c573.tar.bz2
forums-776160a7e35a1f82325b7acf573906310791c573.tar.xz
forums-776160a7e35a1f82325b7acf573906310791c573.zip
[feature/dic] Fetch cache driver explicitly
PHPBB3-10739
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index aa6115fe1c..591969df74 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -104,8 +104,8 @@ $container->setParameter('core.php_ext', $phpEx);
// set up caching
$cache = $container->get('cache');
-$phpbb_class_loader_ext->set_cache($cache->get_driver());
-$phpbb_class_loader->set_cache($cache->get_driver());
+$phpbb_class_loader_ext->set_cache($container->get('cache.driver'));
+$phpbb_class_loader->set_cache($container->get('cache.driver'));
// Instantiate some basic classes
$phpbb_dispatcher = $container->get('dispatcher');