mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
The original functions_post notifications "fix" was absolute tosh ... this is my second attempt which remembers that emails may be in different languages ... also significant altered the email class subject/charset match ... hopefully fixes the various issues seen with this.
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3134 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -209,7 +209,7 @@ switch ( $mode )
|
||||
message_die(GENERAL_MESSAGE, $lang['No_topic_id']);
|
||||
}
|
||||
|
||||
$sql = "SELECT f.*, t.topic_status
|
||||
$sql = "SELECT f.*, t.topic_status, t.topic_title
|
||||
FROM " . FORUMS_TABLE . " f, " . TOPICS_TABLE . " t
|
||||
WHERE t.topic_id = $topic_id
|
||||
AND f.forum_id = t.forum_id";
|
||||
@@ -583,8 +583,8 @@ else if ( $submit || $confirm )
|
||||
}
|
||||
|
||||
if ($error_msg == '' && $mode != 'poll_delete')
|
||||
{
|
||||
user_notification($mode, $post_data, $forum_id, $topic_id, $post_id, $notify_user);
|
||||
{echo "HERE --> " . $post_info['topic_title'] . " \n\n";
|
||||
user_notification($mode, $post_data, $post_info['topic_title'], $forum_id, $topic_id, $post_id, $notify_user);
|
||||
}
|
||||
|
||||
if ( $mode == 'newtopic' || $mode == 'reply' )
|
||||
|
Reference in New Issue
Block a user