This commit is contained in:
Sam Hemelryk 2012-11-27 11:05:40 +13:00
commit fa8d78a485

View file

@ -4331,9 +4331,11 @@ class assign {
foreach ($members as $member) { foreach ($members as $member) {
// User may exist in multple groups (which should put them in the default group). // User may exist in multple groups (which should put them in the default group).
$this->apply_grade_to_user($formdata, $member->id); $this->apply_grade_to_user($formdata, $member->id);
$this->process_outcomes($member->id, $formdata);
} }
} else { } else {
$this->apply_grade_to_user($formdata, $userid); $this->apply_grade_to_user($formdata, $userid);
$this->process_outcomes($userid, $formdata);
} }
} else { } else {
return false; return false;