mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[feature/avatars] Add phpbb prefix to new functions
Although get_user_avatar() is not new, the phpbb prefix was prepended. This is due to the fact that it was entirely rewritten and is therefore more or less a completely new function. PHPBB3-10018
This commit is contained in:
@@ -548,7 +548,7 @@ class acp_groups
|
||||
}
|
||||
}
|
||||
|
||||
$avatar = get_group_avatar($group_row, 'GROUP_AVATAR', true);
|
||||
$avatar = phpbb_get_group_avatar($group_row, 'GROUP_AVATAR', true);
|
||||
|
||||
/*
|
||||
* Merge any avatar errors into the primary error array
|
||||
|
@@ -1844,7 +1844,7 @@ class acp_users
|
||||
}
|
||||
}
|
||||
|
||||
$avatar = get_user_avatar($user_row, 'USER_AVATAR', true);
|
||||
$avatar = phpbb_get_user_avatar($user_row, 'USER_AVATAR', true);
|
||||
|
||||
$template->assign_vars(array(
|
||||
'S_AVATAR' => true,
|
||||
|
Reference in New Issue
Block a user