aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2011-01-09 23:58:27 +0100
committerIgor Wiedler <igor@wiedler.ch>2011-01-09 23:58:27 +0100
commit95c683056b85399200e2caaa9aa65edc6843c16f (patch)
treeac11043ba149791a225d587e7a61e34db75a04f6 /phpBB/common.php
parent5373f8157d8a2619197702c3a00a6bb432ef3e25 (diff)
parent1aef7eb20ee195c7f21d6c5b78653b7c43e669ec (diff)
downloadforums-95c683056b85399200e2caaa9aa65edc6843c16f.tar
forums-95c683056b85399200e2caaa9aa65edc6843c16f.tar.gz
forums-95c683056b85399200e2caaa9aa65edc6843c16f.tar.bz2
forums-95c683056b85399200e2caaa9aa65edc6843c16f.tar.xz
forums-95c683056b85399200e2caaa9aa65edc6843c16f.zip
Merge branch 'task/acm-refactor' into develop
Conflicts: tests/bootstrap.php
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 96b782a229..7b6a407c94 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -187,8 +187,6 @@ if (!empty($load_extensions) && function_exists('dl'))
// Include files
require($phpbb_root_path . 'includes/class_loader.' . $phpEx);
-require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx);
-require($phpbb_root_path . 'includes/cache.' . $phpEx);
require($phpbb_root_path . 'includes/template.' . $phpEx);
require($phpbb_root_path . 'includes/session.' . $phpEx);
require($phpbb_root_path . 'includes/auth.' . $phpEx);
@@ -203,13 +201,15 @@ require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
// Set PHP error handler to ours
set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler');
-// Cache must be loaded before class loader
-$cache = new cache();
-
// Setup class loader first
-$class_loader = new phpbb_class_loader($phpbb_root_path, '.' . $phpEx, $cache);
+$class_loader = new phpbb_class_loader($phpbb_root_path, '.' . $phpEx);
$class_loader->register();
+// set up caching
+$cache_factory = new phpbb_cache_factory($acm_type);
+$class_loader->set_cache($cache_factory->get_driver());
+$cache = $cache_factory->get_service();
+
// Instantiate some basic classes
$request = new phpbb_request();
$user = new user();