diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-09-10 16:20:40 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-09-10 16:20:40 +0000 |
| commit | 08cb824e37a4ef523cce6d394868e87f80fefd38 (patch) | |
| tree | e9616edf99b6546f3907c8b3bfa14b2a95e6d3a4 /phpBB/posting.php | |
| parent | 73f10b93b39b2424c1eca9b9b52ea9e28b04987b (diff) | |
| download | forums-08cb824e37a4ef523cce6d394868e87f80fefd38.tar forums-08cb824e37a4ef523cce6d394868e87f80fefd38.tar.gz forums-08cb824e37a4ef523cce6d394868e87f80fefd38.tar.bz2 forums-08cb824e37a4ef523cce6d394868e87f80fefd38.tar.xz forums-08cb824e37a4ef523cce6d394868e87f80fefd38.zip | |
Missed a couple of config name changes
git-svn-id: file:///svn/phpbb/trunk@1024 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
| -rw-r--r-- | phpBB/posting.php | 6 |
1 files changed, 3 insertions, 3 deletions
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(); |
