aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornatec <natec@users.sourceforge.net>2001-09-11 22:52:56 +0000
committernatec <natec@users.sourceforge.net>2001-09-11 22:52:56 +0000
commitb64ac01603b14d1d02550d74217f30e64bf3678d (patch)
tree512cbf1dd7aad433ce6c43e0a8e4cb401762dc79
parent6504728b3b08d2df85d7fa51aaa5eb63235bc027 (diff)
downloadforums-b64ac01603b14d1d02550d74217f30e64bf3678d.tar
forums-b64ac01603b14d1d02550d74217f30e64bf3678d.tar.gz
forums-b64ac01603b14d1d02550d74217f30e64bf3678d.tar.bz2
forums-b64ac01603b14d1d02550d74217f30e64bf3678d.tar.xz
forums-b64ac01603b14d1d02550d74217f30e64bf3678d.zip
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
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
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);