From 9277649899482587579d2671d2f9ae7a91c07c10 Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Fri, 11 Mar 2005 03:34:42 +0000 Subject: [PATCH] Bug 284896 : QA contact never receives mail when removed from a bug Patch by Olav Vitters r=justdave, a=justdave --- post_bug.cgi | 3 ++- process_bug.cgi | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/post_bug.cgi b/post_bug.cgi index 89be43c917..56e57c5125 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -479,7 +479,8 @@ $vars->{'mailrecipients'} = { 'cc' => \@cc, 'changer' => $::COOKIE{'Bugzilla_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 784f313af0..217bff5b4a 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1715,7 +1715,7 @@ foreach my $id (@idlist) { $vars->{'mailrecipients'} = { 'cc' => \@ccRemoved, 'owner' => $origOwner, - 'qa' => $origQaContact, + 'qacontact' => $origQaContact, 'changer' => $::COOKIE{'Bugzilla_login'} }; $vars->{'id'} = $id; -- 2.47.2