1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

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
This commit is contained in:
natec 2001-09-11 22:52:56 +00:00
parent 6504728b3b
commit b64ac01603

View File

@ -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);