diff options
Diffstat (limited to 'phpBB/modules/ucp/ucp_groups.php')
-rw-r--r-- | phpBB/modules/ucp/ucp_groups.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/modules/ucp/ucp_groups.php b/phpBB/modules/ucp/ucp_groups.php index 0c4a5dca31..67e6fdb9ea 100644 --- a/phpBB/modules/ucp/ucp_groups.php +++ b/phpBB/modules/ucp/ucp_groups.php @@ -429,7 +429,7 @@ class ucp_groups } // Check if the user is allowed to manage this group if set to founder only. - if ($user->data['user_type'] != USER_FOUNDER && $group_row['group_founder_manage']) + if ($user->data['user_type'] != phpbb::USER_FOUNDER && $group_row['group_founder_manage']) { trigger_error($user->lang['NOT_ALLOWED_MANAGE_GROUP'] . $return_page, E_USER_WARNING); } |