Skip to content

Commit

Permalink
Fix for a bug introduced by implementation of #7787: Robust threading…
Browse files Browse the repository at this point in the history
… of e-mails using MIME headers

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/branches/BRANCH_1_1_0@4660 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Oct 22, 2007
1 parent 77480da commit b852442
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/email_api.php
Expand Up @@ -18,7 +18,7 @@
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.

# --------------------------------------------------------
# $Id: email_api.php,v 1.139.2.2 2007-10-21 22:30:39 giallu Exp $
# $Id: email_api.php,v 1.139.2.3 2007-10-22 07:40:59 vboctor Exp $
# --------------------------------------------------------

$t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
Expand Down Expand Up @@ -934,9 +934,9 @@ function email_bug_info_to_one_user( $p_visible_bug_data, $p_message_id, $p_proj
$t_message_md5 = md5( $t_bug_id . $p_visible_bug_data['email_date_submitted'] );
$t_mail_headers = array( 'keywords' => $p_visible_bug_data['set_category'] );
if ( $p_message_id == 'email_notification_title_for_action_bug_submitted' ) {
$t_mail_headers[] = array('Message-ID' => "<{$t_message_md5}>" );
$t_mail_headers['Message-ID'] = "<{$t_message_md5}>";
} else {
$t_mail_headers[] = array('In-Reply-To' => "<{$t_message_md5}>" );
$t_mail_headers['In-Reply-To'] = "<{$t_message_md5}>";
}

# send mail
Expand Down

0 comments on commit b852442

Please sign in to comment.