Merge branch 'MDL-38655_25' of git://github.com/aolley/moodle into MOODLE_25_STABLE
This commit is contained in:
@@ -3086,12 +3086,12 @@ class assign {
|
||||
public function can_view_group_submission($groupid) {
|
||||
global $USER;
|
||||
|
||||
if (!is_enrolled($this->get_course_context(), $USER->id)) {
|
||||
return false;
|
||||
}
|
||||
if (has_capability('mod/assign:grade', $this->context)) {
|
||||
return true;
|
||||
}
|
||||
if (!is_enrolled($this->get_course_context(), $USER->id)) {
|
||||
return false;
|
||||
}
|
||||
$members = $this->get_submission_group_members($groupid, true);
|
||||
foreach ($members as $member) {
|
||||
if ($member->id == $USER->id) {
|
||||
@@ -3110,7 +3110,7 @@ class assign {
|
||||
public function can_view_submission($userid) {
|
||||
global $USER;
|
||||
|
||||
if (is_siteadmin()) {
|
||||
if (has_capability('mod/assign:grade', $this->context)) {
|
||||
return true;
|
||||
}
|
||||
if (!is_enrolled($this->get_course_context(), $userid)) {
|
||||
@@ -3119,9 +3119,6 @@ class assign {
|
||||
if ($userid == $USER->id && has_capability('mod/assign:submit', $this->context)) {
|
||||
return true;
|
||||
}
|
||||
if (has_capability('mod/assign:grade', $this->context)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user