diff options
author | jocuri%softhome.net <> | 2004-12-05 23:06:46 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-12-05 23:06:46 +0100 |
commit | 41f1a258127fea019a3349cbe8d4fd1b6d8b616e (patch) | |
tree | 1f2ea7217317430c2a73cd79a9b7aa7022640a7b /Bugzilla | |
parent | 5334598328565b2f86914909dfd60b26208f283b (diff) | |
download | bugzilla-41f1a258127fea019a3349cbe8d4fd1b6d8b616e.tar.gz bugzilla-41f1a258127fea019a3349cbe8d4fd1b6d8b616e.tar.xz |
Patch for bug 175222: Add product and component fields to change mails; patch by Sergei Chechetkin <csl@sunbay.com>, r=wurblzap, a=justdave.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/BugMail.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 22f97d365..0e089fa12 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -853,6 +853,8 @@ sub NewProcessOnePerson ($$$$$$$$$$$$$) { } else { $substs{"diffs"} = $difftext . "\n\n" . $newcomments; } + $substs{"product"} = $values{'product'}; + $substs{"component"} = $values{'component'}; $substs{"summary"} = $values{'short_desc'}; $substs{"reasonsheader"} = join(" ", @reasons); $substs{"reasonsbody"} = $reasonsbody; |