MDL-22551 Grr fixed typo. Do what I say, not what I do.

This commit is contained in:
Martin Dougiamas 2010-09-16 02:14:02 +00:00
parent c1b47d948d
commit 38015ff926

View File

@ -613,7 +613,7 @@ function forum_cron() {
if ($post->parent) { // This post is a reply, so add headers for threading (see MDL-22551)
$userfrom->customheaders[] = 'In-Reply-To: <moodlepost'.$post->parent.'@'.$hostname.'>';
$userfrom->customheaders[] = 'References: <moodlepost'.$post->parent.'@'.$hostname.'>',
$userfrom->customheaders[] = 'References: <moodlepost'.$post->parent.'@'.$hostname.'>';
}
$postsubject = "$course->shortname: ".format_string($post->subject,true);