diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-06-27 21:02:07 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-06-27 21:02:07 +0200 |
commit | df16bd1c49e6e970b147f15e752825dd3186fb87 (patch) | |
tree | 43dd9efd101d97a2a9efceba4d4e90c17724372d /phpBB/common.php | |
parent | 13f4bfabbeab77698f06c3431931b73ebedc587c (diff) | |
download | forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar.gz forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar.bz2 forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar.xz forums-df16bd1c49e6e970b147f15e752825dd3186fb87.zip |
[feature/avatars] Rewrite drivers to use full class name
* Use full driver class name as avatar_type value
* Move avatar drivers to core namespace
* Make avatars installable through extensions
PHPBB3-10018
Diffstat (limited to 'phpBB/common.php')
-rw-r--r-- | phpBB/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index 11b84ee858..52666685ac 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -130,7 +130,7 @@ $phpbb_style = new phpbb_style($phpbb_root_path, $phpEx, $config, $user, $phpbb_ $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()); +$phpbb_avatar_manager = new phpbb_avatar_manager($phpbb_root_path, $phpEx, $config, $request, $phpbb_extension_manager, $cache->get_driver()); // Add own hook handler require($phpbb_root_path . 'includes/hooks/index.' . $phpEx); |