From 076785d76a1412394636095f0b296964419e2a4f Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Wed, 14 Nov 2012 20:04:02 +0100 Subject: [feature/avatars] Add support for custom avatar HTML code PHPBB3-10018 --- phpBB/includes/functions_display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/includes/functions_display.php') diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index f84652fc50..bf1611a5de 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1372,7 +1372,7 @@ function get_avatar($row, $alt, $ignore_config = false) { if ($avatar->custom_html) { - return $avatar->get_html($row, $ignore_config); + return $avatar->get_custom_html($row, $ignore_config, $alt); } $avatar_data = $avatar->get_data($row, $ignore_config); -- cgit v1.2.1