mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
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
This commit is contained in:
@@ -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")
|
||||
|
Reference in New Issue
Block a user