diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-03-29 21:46:15 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-03-29 21:46:15 +0200 |
commit | 0db5834ed0c2f4c14611e3af54f5017da259b092 (patch) | |
tree | b42ac302c0973447efda46371aa319438f2ce4ee /extensions/SecureMail | |
parent | fe9f740eda1876e60fe9614d367f7fe9116d29d8 (diff) | |
download | bugzilla-0db5834ed0c2f4c14611e3af54f5017da259b092.tar.gz bugzilla-0db5834ed0c2f4c14611e3af54f5017da259b092.tar.xz |
Bug 737883 - Bug 731044 breaks gmail threading of bugs
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 15f62a048..c863c72ba 100644 --- a/extensions/SecureMail/Extension.pm +++ b/extensions/SecureMail/Extension.pm @@ -350,7 +350,7 @@ sub _make_secure { # This is designed to still work if the admin changes the word # 'bug' to something else. However, it could break if they change # the format of the subject line in another way. - $subject =~ s/($bug_id\])\s+(.*)$/$1 (Secure bug updated)/; + $subject =~ s/($bug_id\])\s+(.*)$/$1 (Secure bug $bug_id updated)/; $email->header_set('Subject', $subject); } } |