diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-03-04 17:43:51 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-03-04 17:43:51 +0100 |
commit | b796e32e30bfcda629ebcf2a86550c6371839b0d (patch) | |
tree | 8c451ef79c606ccccf77bf764a018c8ae73f1f69 | |
parent | 850dbf1f4b1e2bdee8b2e5f0438a5625d0a1bedf (diff) | |
download | rpg-b796e32e30bfcda629ebcf2a86550c6371839b0d.tar.gz rpg-b796e32e30bfcda629ebcf2a86550c6371839b0d.tar.bz2 |
fixed missing replacement for HTML notify mails
-rw-r--r-- | inc/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php index 1d8061ab0..a75d452a0 100644 --- a/inc/common.php +++ b/inc/common.php @@ -1147,7 +1147,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false,$replace=array()){ $mail->to($to); $mail->bcc($bcc); $mail->subject($subject); - $mail->setBody($text,$trep); + $mail->setBody($text,$trep,$hrep); return $mail->send(); } |