aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/download
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-06-27 21:02:07 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-06-27 21:02:07 +0200
commitdf16bd1c49e6e970b147f15e752825dd3186fb87 (patch)
tree43dd9efd101d97a2a9efceba4d4e90c17724372d /phpBB/download
parent13f4bfabbeab77698f06c3431931b73ebedc587c (diff)
downloadforums-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/download')
-rw-r--r--phpBB/download/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php
index 55364b3fd0..34999ab24c 100644
--- a/phpBB/download/file.php
+++ b/phpBB/download/file.php
@@ -82,7 +82,7 @@ if (isset($_GET['avatar']))
$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());
$filename = request_var('avatar', '');
$avatar_group = false;