diff options
author | Byron Jones <glob@mozilla.com> | 2014-06-30 06:51:29 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-06-30 06:51:29 +0200 |
commit | dcce541d2770b4b9d6b2bd0e9488babe6feef9ff (patch) | |
tree | 03a27c0a9a5a01f01ac97d77a26d2a9912f48eac /extensions/SecureMail | |
parent | 55894e69c24185bc6ecd97b9f6b96aec6e807f7d (diff) | |
download | bugzilla-dcce541d2770b4b9d6b2bd0e9488babe6feef9ff.tar.gz bugzilla-dcce541d2770b4b9d6b2bd0e9488babe6feef9ff.tar.xz |
Bug 1030747: Recent changes to secure bugmail subject lines break GMail threading
Diffstat (limited to 'extensions/SecureMail')
-rw-r--r-- | extensions/SecureMail/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/SecureMail/Extension.pm b/extensions/SecureMail/Extension.pm index 7bd0ccc5f..5c697e8db 100644 --- a/extensions/SecureMail/Extension.pm +++ b/extensions/SecureMail/Extension.pm @@ -552,7 +552,7 @@ sub _make_secure { my $new = $add_new ? ' New:' : ''; my $product = $email->header('X-Bugzilla-Product'); my $component = $email->header('X-Bugzilla-Component'); - $subject =~ s/($bug_id\])\s+(.*)$/$1$new (Secure bug in $product :: $component)/; + $subject =~ s/($bug_id\])\s+(.*)$/$1$new (Secure bug $bug_id in $product :: $component)/; $email->header_set('Subject', $subject); } } |