diff --git a/src/Security/Group.php b/src/Security/Group.php index eb279e111..aba30eaf6 100755 --- a/src/Security/Group.php +++ b/src/Security/Group.php @@ -635,6 +635,11 @@ class Group extends DataObject return true; } + // if user can grant access for specific groups, they need to be able to see the groups + if (Permission::checkMember($member, "SITETREE_GRANT_ACCESS")) { + return true; + } + return false; }