aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
diff options
context:
space:
mode:
authorCullen Walsh <ckwalsh@phpbb.com>2011-04-18 10:44:29 -0700
committerCullen Walsh <ckwalsh@cullenwalsh.com>2012-03-18 22:19:17 +0000
commitf102d9a631d6de464abefe2089ff1e6e13ed044d (patch)
tree6104027a7b9c263fe1a1bfd1d49d7057b59a30da /phpBB/includes/functions_display.php
parent7abded081d5ae3d231148b0485c8605b44973229 (diff)
downloadforums-f102d9a631d6de464abefe2089ff1e6e13ed044d.tar
forums-f102d9a631d6de464abefe2089ff1e6e13ed044d.tar.gz
forums-f102d9a631d6de464abefe2089ff1e6e13ed044d.tar.bz2
forums-f102d9a631d6de464abefe2089ff1e6e13ed044d.tar.xz
forums-f102d9a631d6de464abefe2089ff1e6e13ed044d.zip
[feature/avatars] Various cosmetic changes
Various small changes based on feedback from nn- * Renaming $php_ext to $phpEx * Fixing copyright years * Explain $ignore_config * Explain Regex * Copypasta package error * rename get_singleton PHPBB3-10018
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r--phpBB/includes/functions_display.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index 3aeee5f704..23900dfd88 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -1341,7 +1341,7 @@ function get_user_avatar($user_row, $alt = 'USER_AVATAR', $ignore_config = false
$avatar_manager = new phpbb_avatar_manager($phpbb_root_path, $phpEx, $config, $cache->get_driver());
}
- $avatar = $avatar_manager->get_singleton($user_row['user_avatar_type']);
+ $avatar = $avatar_manager->get_driver($user_row['user_avatar_type']);
if ($avatar)
{