diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-10-27 10:00:24 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-10-27 10:00:24 +0100 |
commit | 9ccb87675d29da497f9d5917a504f5473fa67ff1 (patch) | |
tree | a08affb1bb30eb426c45c349fb0dd01376bd0330 | |
parent | 51251293abb40e04e290df2f937504cfaabde43b (diff) | |
download | forums-9ccb87675d29da497f9d5917a504f5473fa67ff1.tar forums-9ccb87675d29da497f9d5917a504f5473fa67ff1.tar.gz forums-9ccb87675d29da497f9d5917a504f5473fa67ff1.tar.bz2 forums-9ccb87675d29da497f9d5917a504f5473fa67ff1.tar.xz forums-9ccb87675d29da497f9d5917a504f5473fa67ff1.zip |
[ticket/13226] Fix the usage of $rank_img
PHPBB3-13226
-rw-r--r-- | phpBB/memberlist.php | 4 |
1 files changed, 2 insertions, 2 deletions
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 .= '<br />'; + $user_rank_data['img'] .= '<br />'; } } |