generate_email_supportuser needs to set maildisplay for email_to_user to include proper support details.

This commit is contained in:
jmg324 2007-09-27 12:38:40 +00:00
parent ae8adf77c0
commit ef0bd87b3f

View File

@ -3732,6 +3732,7 @@ function generate_email_supportuser() {
$supportuser->email = $CFG->supportemail ? $CFG->supportemail : $CFG->noreplyaddress;
$supportuser->firstname = $CFG->supportname ? $CFG->supportname : get_string('noreplyname');
$supportuser->lastname = '';
$supportuser->maildisplay = true;
return $supportuser;
}