Bugfix: don't send HTML digests to users who want simple text mail.

This commit is contained in:
defacer 2005-02-04 21:13:28 +00:00
parent de293f37ce
commit 379a42cb26

View File

@ -541,6 +541,11 @@ function forum_cron () {
}
$posthtml .= '</body>';
if($userto->mailformat != 1) {
// This user DOESN'T want to receive HTML
$posthtml = '';
}
if (!$mailresult = email_to_user($userto, $site->shortname, $postsubject, $posttext, $posthtml,
'', '', $CFG->forum_replytouser)) {
mtrace("ERROR!");