diff --git a/phpBB/adm/style/acp_groups.html b/phpBB/adm/style/acp_groups.html
index 07f7d072e8..2f812c443d 100644
--- a/phpBB/adm/style/acp_groups.html
+++ b/phpBB/adm/style/acp_groups.html
@@ -70,6 +70,10 @@
+
+
+
+
{L_GROUP_RECEIVE_PM_EXPLAIN}
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index ab2481a5dd..087a85a583 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -2506,7 +2506,7 @@ function group_create(&$group_id, $type, $name, $desc, $group_attributes, $allow
$current_teampage = $teampage->get_group_value($group_id);
}
- if (isset($group_attributes['group_legend']))
+ if (!empty($group_attributes['group_legend']))
{
if (($group_id && ($current_legend == phpbb_group_positions::GROUP_DISABLED)) || !$group_id)
{
@@ -2530,7 +2530,7 @@ function group_create(&$group_id, $type, $name, $desc, $group_attributes, $allow
$group_attributes['group_legend'] = phpbb_group_positions::GROUP_DISABLED;
}
- if (isset($group_attributes['group_teampage']))
+ if (!empty($group_attributes['group_teampage']))
{
if (($group_id && ($current_teampage == phpbb_group_positions::GROUP_DISABLED)) || !$group_id)
{