From 93a15275470b50a6afd0e8fa8bb3541e85c0685e Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Fri, 11 Mar 2005 03:35:18 +0000 Subject: Bug 284896 : QA contact never receives mail when removed from a bug Patch by Olav Vitters r=justdave, a=justdave --- post_bug.cgi | 2 +- process_bug.cgi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/post_bug.cgi b/post_bug.cgi index 5a98cc653..bc8a0afc5 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -492,7 +492,7 @@ $vars->{'mailrecipients'} = { 'cc' => \@cc, 'changer' => Bugzilla->user->login }; 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; diff --git a/process_bug.cgi b/process_bug.cgi index 1fb54d2a4..0b9354171 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1816,7 +1816,7 @@ foreach my $id (@idlist) { $vars->{'mailrecipients'} = { 'cc' => \@ccRemoved, 'owner' => $origOwner, - 'qa' => $origQaContact, + 'qacontact' => $origQaContact, 'changer' => Bugzilla->user->login }; $vars->{'id'} = $id; -- cgit v1.2.3-24-g4f1b