aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-07-28 17:18:40 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-07-28 17:18:40 +0200
commit2df92309028953fce04b4a5f141575889576cb18 (patch)
tree9fd5ec9f542b93a50d7d5adbaa4f0dbd96349027 /phpBB/includes/functions.php
parent423345d517de818dbc45d9a9f08d243b0c3a6998 (diff)
parentf567b2bb69dd85d7a85bf11bd9a4dd7421ef0b45 (diff)
downloadforums-2df92309028953fce04b4a5f141575889576cb18.tar
forums-2df92309028953fce04b4a5f141575889576cb18.tar.gz
forums-2df92309028953fce04b4a5f141575889576cb18.tar.bz2
forums-2df92309028953fce04b4a5f141575889576cb18.tar.xz
forums-2df92309028953fce04b4a5f141575889576cb18.zip
Merge branch '3.2.x' into 3.3.x
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 a5f9b68e7a..0b5721f216 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4120,9 +4120,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);
}