aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authormrgoldy <gijsmartens1@gmail.com>2018-12-30 14:15:03 +0100
committermrgoldy <gijsmartens1@gmail.com>2018-12-30 14:15:03 +0100
commit50cec4d54cfe2985df3d7fb4fd381c1c810a356b (patch)
treea69131586a98544eda939a36bcd2efb71285fd9f /phpBB/includes/functions.php
parente2e3d402a25b6203f2c29296eddf2dae002053da (diff)
downloadforums-50cec4d54cfe2985df3d7fb4fd381c1c810a356b.tar
forums-50cec4d54cfe2985df3d7fb4fd381c1c810a356b.tar.gz
forums-50cec4d54cfe2985df3d7fb4fd381c1c810a356b.tar.bz2
forums-50cec4d54cfe2985df3d7fb4fd381c1c810a356b.tar.xz
forums-50cec4d54cfe2985df3d7fb4fd381c1c810a356b.zip
[ticket/15886] Change phpbb_get_group_avatar variable names
PHPBB3-15886
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 99f65a0e92..e3c3a19c96 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4081,9 +4081,9 @@ function phpbb_get_user_avatar($user_row, $alt = 'USER_AVATAR', $ignore_config =
*
* @return string Avatar html
*/
-function phpbb_get_group_avatar($user_row, $alt = 'GROUP_AVATAR', $ignore_config = false, $lazy = false)
+function phpbb_get_group_avatar($group_row, $alt = 'GROUP_AVATAR', $ignore_config = false, $lazy = false)
{
- $row = \phpbb\avatar\manager::clean_row($user_row, 'group');
+ $row = \phpbb\avatar\manager::clean_row($group_row, 'group');
return phpbb_get_avatar($row, $alt, $ignore_config, $lazy);
}