1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-13 04:04:12 +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

@@ -223,7 +223,7 @@ class user_loader
'rank_img_src',
);
get_user_rank($user, (($user['user_id'] == ANONYMOUS) ? false : $user['user_posts']), $rank['rank_title'], $rank['rank_img'], $rank['rank_img_src']);
phpbb_get_user_rank($user, (($user['user_id'] == ANONYMOUS) ? false : $user['user_posts']), $rank['rank_title'], $rank['rank_img'], $rank['rank_img_src']);
return $rank;
}