From 9ccb87675d29da497f9d5917a504f5473fa67ff1 Mon Sep 17 00:00:00 2001 From: Tristan Darricau Date: Mon, 27 Oct 2014 10:00:24 +0100 Subject: [ticket/13226] Fix the usage of $rank_img PHPBB3-13226 --- phpBB/memberlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB') diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index e3ac8dad51..439b97b47f 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1089,9 +1089,9 @@ switch ($mode) { $user_rank_data = phpbb_get_user_rank($group_row, false); - if ($rank_img) + if ($user_rank_data['img']) { - $rank_img .= '
'; + $user_rank_data['img'] .= '
'; } } -- cgit v1.2.1