From: jocuri%softhome.net <> Date: Sun, 5 Dec 2004 22:06:46 +0000 (+0000) Subject: Patch for bug 175222: Add product and component fields to change mails; patch by... X-Git-Tag: bugzilla-2.19.2~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41f1a258127fea019a3349cbe8d4fd1b6d8b616e;p=thirdparty%2Fbugzilla.git Patch for bug 175222: Add product and component fields to change mails; patch by Sergei Chechetkin , r=wurblzap, a=justdave. --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 22f97d365c..0e089fa121 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;