From d7b12970d72fdb6b0d211c6bce8ab9f877f5e4fa Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Sat, 24 Sep 2005 09:33:12 +0000 Subject: [PATCH] Reverted checking. Missed the variable nr of arguments for group_user_add() git-svn-id: file:///svn/phpbb/trunk@5226 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/adm/admin_groups.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/adm/admin_groups.php b/phpBB/adm/admin_groups.php index 0c6c8c9412..4c0e546670 100644 --- a/phpBB/adm/admin_groups.php +++ b/phpBB/adm/admin_groups.php @@ -218,7 +218,7 @@ function marklist(match, status) $name_ary = array_unique(explode("\n", $name_ary)); // Add user/s to group - if ($error = group_user_add($group_id, false, $name_ary, $group_name, $default, $leader, 0)) + if ($error = group_user_add($group_id, false, $name_ary, $group_name, $default, $leader, $group_colour, $group_rank, $group_avatar, $group_avatar_type, $group_avatar_width, $group_avatar_height)) { trigger_error($user->lang[$error]); }