From b64ac01603b14d1d02550d74217f30e64bf3678d Mon Sep 17 00:00:00 2001 From: natec Date: Tue, 11 Sep 2001 22:52:56 +0000 Subject: [PATCH] fixed bug 460663 -- we were trying to use the wrong field as the email addy when sending reply notification emails. git-svn-id: file:///svn/phpbb/trunk@1031 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index 459af3b3a3..eac19e3014 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -754,7 +754,7 @@ if( ( $submit || $confirm ) && !$error ) $email_headers = "From: " . $board_config['email_from'] . "\nReturn-Path: " . $board_config['email_from'] . "\r\n"; $emailer->use_template("topic_notify"); - $emailer->email_address($email_set[$i]['email_from']); + $emailer->email_address($email_set[$i]['user_email']); $emailer->set_subject($lang['Topic_reply_notification']); $emailer->extra_headers($email_headers);