mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
Merge branch 'wip-mdl-29534' of git://github.com/rajeshtaneja/moodle
This commit is contained in:
commit
361dfe6572
@ -705,6 +705,14 @@ function forum_cron() {
|
||||
$eventdata->fullmessagehtml = $posthtml;
|
||||
$eventdata->notification = 1;
|
||||
|
||||
// If forum_replytouser is not set then send mail using the noreplyaddress.
|
||||
if (empty($CFG->forum_replytouser)) {
|
||||
// Clone userfrom as it is referenced by $users.
|
||||
$cloneduserfrom = clone($userfrom);
|
||||
$cloneduserfrom->email = $CFG->noreplyaddress;
|
||||
$eventdata->userfrom = $cloneduserfrom;
|
||||
}
|
||||
|
||||
$smallmessagestrings = new stdClass();
|
||||
$smallmessagestrings->user = fullname($userfrom);
|
||||
$smallmessagestrings->forumname = "$shortname: ".format_string($forum->name,true).": ".$discussion->name;
|
||||
@ -715,11 +723,6 @@ function forum_cron() {
|
||||
$eventdata->contexturl = "{$CFG->wwwroot}/mod/forum/discuss.php?d={$discussion->id}#p{$post->id}";
|
||||
$eventdata->contexturlname = $discussion->name;
|
||||
|
||||
// If forum_replytouser is not set then send mail using the noreplyaddress.
|
||||
if (empty($CFG->forum_replytouser)) {
|
||||
$eventdata->userfrom->email = $CFG->noreplyaddress;
|
||||
}
|
||||
|
||||
$mailresult = message_send($eventdata);
|
||||
if (!$mailresult){
|
||||
mtrace("Error: mod/forum/lib.php forum_cron(): Could not send out mail for id $post->id to user $userto->id".
|
||||
|
Loading…
x
Reference in New Issue
Block a user