aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-04-08 16:40:19 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-04-08 16:40:19 +0200
commit81fb4268cd141259fe5b3bc9ad51adf2e29e0772 (patch)
treeb7853d742aeb04980f6de619560db3e9667245e8 /phpBB/includes/functions_display.php
parenteea2ec50521e274b928d23f710108f37797cb22c (diff)
downloadforums-81fb4268cd141259fe5b3bc9ad51adf2e29e0772.tar
forums-81fb4268cd141259fe5b3bc9ad51adf2e29e0772.tar.gz
forums-81fb4268cd141259fe5b3bc9ad51adf2e29e0772.tar.bz2
forums-81fb4268cd141259fe5b3bc9ad51adf2e29e0772.tar.xz
forums-81fb4268cd141259fe5b3bc9ad51adf2e29e0772.zip
[feature/avatars] Introduce an avatar driver interface
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r--phpBB/includes/functions_display.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index e1dd67aeaf..82638b7f2b 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -1281,7 +1281,7 @@ function get_user_rank($user_rank, $user_posts, &$rank_title, &$rank_img, &$rank
*/
function get_user_avatar($user_row, $alt = 'USER_AVATAR', $ignore_config = false)
{
- $row = phpbb_avatar_driver::clean_row($user_row, phpbb_avatar_driver::FROM_USER);
+ $row = phpbb_avatar_driver::clean_row($user_row, phpbb_avatar_driver_interface::FROM_USER);
return get_avatar($row, $alt, $ignore_config);
}
@@ -1296,7 +1296,7 @@ function get_user_avatar($user_row, $alt = 'USER_AVATAR', $ignore_config = false
*/
function get_group_avatar($user_row, $alt = 'GROUP_AVATAR', $ignore_config = false)
{
- $row = phpbb_avatar_driver::clean_row($user_row, phpbb_avatar_driver::FROM_GROUP);
+ $row = phpbb_avatar_driver::clean_row($user_row, phpbb_avatar_driver_interface::FROM_GROUP);
return get_avatar($row, $alt, $ignore_config);
}