MDL-46721 assign: Make blind marking participant numbers match

Previously emails were setting the "From" header to the incorrect
participant number.
This commit is contained in:
Cameron Ball
2016-05-24 18:19:54 +08:00
parent 2c952b2f38
commit 4ca7fdd26e
+4 -6
View File
@@ -5466,11 +5466,9 @@ class assign {
* @param int $updatetime
* @return void
*/
public function send_notification($userfrom,
$userto,
$messagetype,
$eventtype,
$updatetime) {
public function send_notification($userfrom, $userto, $messagetype, $eventtype, $updatetime) {
global $USER;
$uniqueid = $this->get_uniqueid_for_user(core_user::is_real_user($userfrom->id) ? $userfrom->id : $USER->id);
self::send_assignment_notification($userfrom,
$userto,
$messagetype,
@@ -5482,7 +5480,7 @@ class assign {
$this->get_module_name(),
$this->get_instance()->name,
$this->is_blind_marking(),
$this->get_uniqueid_for_user($userfrom->id));
$uniqueid);
}
/**