1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-21 16:01:40 +02:00

[ticket/12993] Rename to phpbb_get_user_rank

PHPBB3-12993
This commit is contained in:
Tristan Darricau
2014-08-18 16:13:32 +02:00
parent 685bdc87e6
commit 496cc64bc6
7 changed files with 29 additions and 12 deletions

View File

@@ -284,7 +284,7 @@ switch ($mode)
}
$rank_title = $rank_img = $rank_img_src = '';
get_user_rank($row, (($row['user_id'] == ANONYMOUS) ? false : $row['user_posts']), $rank_title, $rank_img, $rank_img_src);
phpbb_get_user_rank($row, (($row['user_id'] == ANONYMOUS) ? false : $row['user_posts']), $rank_title, $rank_img, $rank_img_src);
$template->assign_block_vars('group.user', array(
'USER_ID' => $row['user_id'],
@@ -1083,7 +1083,7 @@ switch ($mode)
$rank_title = $rank_img = $rank_img_src = '';
if ($group_row['group_rank'])
{
get_user_rank($group_row, false, $rank_title, $rank_img, $rank_img_src);
phpbb_get_user_rank($group_row, false, $rank_title, $rank_img, $rank_img_src);
if ($rank_img)
{