|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:12:23
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv10113/includes
Modified Files:
post.php
Log Message:
Changed way subject is sent to email ... handled by templates where necessary
Index: post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/post.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** post.php 23 Feb 2002 17:54:32 -0000 1.20
--- post.php 2 Mar 2002 18:12:19 -0000 1.21
***************
*** 631,635 ****
$emailer->use_template("topic_notify", $row['user_lang']);
$emailer->email_address($row['user_email']);
! $emailer->set_subject($lang['Topic_reply_notification']);
$emailer->extra_headers($email_headers);
--- 631,635 ----
$emailer->use_template("topic_notify", $row['user_lang']);
$emailer->email_address($row['user_email']);
! $emailer->set_subject();//$lang['Topic_reply_notification']
$emailer->extra_headers($email_headers);
***************
*** 638,642 ****
"USERNAME" => $row['username'],
"SITENAME" => $board_config['sitename'],
! "TOPIC_TITLE" => $topic_title,
"U_TOPIC" => $server_protocol . $server_name . $server_port . $script_name . "?" . POST_POST_URL . "=$post_id#$post_id",
--- 638,642 ----
"USERNAME" => $row['username'],
"SITENAME" => $board_config['sitename'],
! "TOPIC_TITLE" => $topic_title,
"U_TOPIC" => $server_protocol . $server_name . $server_port . $script_name . "?" . POST_POST_URL . "=$post_id#$post_id",
|