MDL-57362 assign: Fix permission checks

This commit is contained in:
Ankit Agarwal
2017-03-07 13:04:01 +05:30
parent 188d41ccc9
commit cde1ac3eea
+2 -1
View File
@@ -3083,7 +3083,8 @@ class assign {
}
// Checks for the edge case when user belongs to no groups and groupmode is sep.
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 true;