Merge branch 'MDL-57362-master' of git://github.com/ankitagarwal/moodle

This commit is contained in:
Dan Poltawski 2017-03-07 06:47:38 -03:00
commit d04310cb21

View File

@ -3102,7 +3102,8 @@ class assign {
} }
// Checks for the edge case when user belongs to no groups and groupmode is sep. // Checks for the edge case when user belongs to no groups and groupmode is sep.
if ($this->get_course_module()->effectivegroupmode == SEPARATEGROUPS) { if ($this->get_course_module()->effectivegroupmode == SEPARATEGROUPS) {
$groupflag = !empty(groups_get_activity_allowed_groups($this->get_course_module())); $groupflag = has_capability('moodle/site:accessallgroups', $this->get_context());
$groupflag = $groupflag || !empty(groups_get_activity_allowed_groups($this->get_course_module()));
return (bool)$groupflag; return (bool)$groupflag;
} }
return true; return true;