aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-04-08 16:27:09 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-04-08 16:27:09 +0200
commiteea2ec50521e274b928d23f710108f37797cb22c (patch)
tree50659ff5ec46e6a8282103c6af91f587b28e7838 /phpBB/common.php
parente8a9c0ae6d92822699de9a2d7fc1aae9377ade8a (diff)
downloadforums-eea2ec50521e274b928d23f710108f37797cb22c.tar
forums-eea2ec50521e274b928d23f710108f37797cb22c.tar.gz
forums-eea2ec50521e274b928d23f710108f37797cb22c.tar.bz2
forums-eea2ec50521e274b928d23f710108f37797cb22c.tar.xz
forums-eea2ec50521e274b928d23f710108f37797cb22c.zip
[feature/avatars] Introduce global phpbb_avatar_manager
PHPBB3-10018
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index b3b8d7e4f7..c59c231d28 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -130,6 +130,8 @@ $style = new phpbb_style($phpbb_root_path, $phpEx, $config, $user, $phpbb_style_
$phpbb_subscriber_loader = new phpbb_event_extension_subscriber_loader($phpbb_dispatcher, $phpbb_extension_manager);
$phpbb_subscriber_loader->load();
+$phpbb_avatar_manager = new phpbb_avatar_manager($phpbb_root_path, $phpEx, $config, $request, $cache->get_driver());
+
// Add own hook handler
require($phpbb_root_path . 'includes/hooks/index.' . $phpEx);
$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('template', 'display')));