aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-03-02 18:12:19 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-03-02 18:12:19 +0000
commit6172b1c51eace2e7eaf2157aaf06aec081ad5564 (patch)
treea8f0235a0644794308b04991356c82e2bdde31cd /phpBB/includes
parentdcdb379679959bf96a721dc9e28d07fedee1ed5b (diff)
downloadforums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar.gz
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar.bz2
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.tar.xz
forums-6172b1c51eace2e7eaf2157aaf06aec081ad5564.zip
Changed way subject is sent to email ... handled by templates where necessary
git-svn-id: file:///svn/phpbb/trunk@2247 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/post.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/post.php b/phpBB/includes/post.php
index f927001578..c381d3292f 100644
--- a/phpBB/includes/post.php
+++ b/phpBB/includes/post.php
@@ -630,14 +630,14 @@ function user_notification($mode, &$post_data, &$forum_id, &$topic_id, &$post_id
{
$emailer->use_template("topic_notify", $row['user_lang']);
$emailer->email_address($row['user_email']);
- $emailer->set_subject($lang['Topic_reply_notification']);
+ $emailer->set_subject();//$lang['Topic_reply_notification']
$emailer->extra_headers($email_headers);
$emailer->assign_vars(array(
"EMAIL_SIG" => str_replace("<br />", "\n", "-- \n" . $board_config['board_email_sig']),
"USERNAME" => $row['username'],
"SITENAME" => $board_config['sitename'],
- "TOPIC_TITLE" => $topic_title,
+ "TOPIC_TITLE" => $topic_title,
"U_TOPIC" => $server_protocol . $server_name . $server_port . $script_name . "?" . POST_POST_URL . "=$post_id#$post_id",
"U_STOP_WATCHING_TOPIC" => $server_protocol . $server_name . $server_port . $script_name . "?" . POST_TOPIC_URL . "=$topic_id&unwatch=topic")