From: travis%sedsystems.ca <> Date: Fri, 11 Mar 2005 03:34:42 +0000 (+0000) Subject: Bug 284896 : QA contact never receives mail when removed from a bug X-Git-Tag: bugzilla-2.18.1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9277649899482587579d2671d2f9ae7a91c07c10;p=thirdparty%2Fbugzilla.git Bug 284896 : QA contact never receives mail when removed from a bug Patch by Olav Vitters r=justdave, a=justdave --- 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;