Commit 93a15275 authored by travis%sedsystems.ca's avatar travis%sedsystems.ca

Bug 284896 : QA contact never receives mail when removed from a bug

Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=justdave, a=justdave
parent e096f611
...@@ -492,7 +492,7 @@ $vars->{'mailrecipients'} = { 'cc' => \@cc, ...@@ -492,7 +492,7 @@ $vars->{'mailrecipients'} = { 'cc' => \@cc,
'changer' => Bugzilla->user->login }; 'changer' => Bugzilla->user->login };
if (defined $::FORM{'qa_contact'}) { if (defined $::FORM{'qa_contact'}) {
$vars->{'mailrecipients'}->{'qa'} = DBID_to_name($::FORM{'qa_contact'}); $vars->{'mailrecipients'}->{'qacontact'} = DBID_to_name($::FORM{'qa_contact'});
} }
$vars->{'id'} = $id; $vars->{'id'} = $id;
......
...@@ -1816,7 +1816,7 @@ foreach my $id (@idlist) { ...@@ -1816,7 +1816,7 @@ foreach my $id (@idlist) {
$vars->{'mailrecipients'} = { 'cc' => \@ccRemoved, $vars->{'mailrecipients'} = { 'cc' => \@ccRemoved,
'owner' => $origOwner, 'owner' => $origOwner,
'qa' => $origQaContact, 'qacontact' => $origQaContact,
'changer' => Bugzilla->user->login }; 'changer' => Bugzilla->user->login };
$vars->{'id'} = $id; $vars->{'id'} = $id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment