From 08cb824e37a4ef523cce6d394868e87f80fefd38 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 10 Sep 2001 16:20:40 +0000 Subject: Missed a couple of config name changes git-svn-id: file:///svn/phpbb/trunk@1024 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/posting.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phpBB/posting.php') diff --git a/phpBB/posting.php b/phpBB/posting.php index 6cd576fc36..459af3b3a3 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -751,10 +751,10 @@ if( ( $submit || $confirm ) && !$error ) { if( $email_set[$i]['user_email'] != "") { - $email_headers = "From: " . $board_config['board_email'] . "\nReturn-Path: " . $board_config['board_email'] . "\r\n"; + $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]['user_email']); + $emailer->email_address($email_set[$i]['email_from']); $emailer->set_subject($lang['Topic_reply_notification']); $emailer->extra_headers($email_headers); @@ -766,7 +766,7 @@ if( ( $submit || $confirm ) && !$error ) "TOPIC_TITLE" => $email_set[$i]['topic_title'], "TOPIC_URL" => "http://" . $HTTP_SERVER_VARS['SERVER_NAME'] . $path . "/viewtopic.$phpEx?" . POST_POST_URL . "=$new_post_id#$new_post_id", "UN_WATCH_URL" => "http://" . $HTTP_SERVER_VARS['SERVER_NAME'] . $path . "/viewtopic.$phpEx?" . POST_TOPIC_URL . "=$new_topic_id&unwatch=topic", - "EMAIL_SIG" => $board_config['email_sig']) + "EMAIL_SIG" => $board_config['board_email']) ); $emailer->send(); -- cgit v1.2.1