Skip to content

Commit

Permalink
MDL-53811 mod_assign: fixed error in convert submissions task
Browse files Browse the repository at this point in the history
  • Loading branch information
mdjnelson committed Apr 19, 2016
1 parent 4f33514 commit fcc9218
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ public function execute() {
} else {
$members = $assignment->get_submission_group_members($submission->groupid, true);

foreach ($members as $memberid) {
array_push($users, $memberid);
foreach ($members as $member) {
array_push($users, $member->id);
}
}

Expand Down

0 comments on commit fcc9218

Please sign in to comment.