diff options
-rwxr-xr-x | post_bug.cgi | 2 | ||||
-rwxr-xr-x | 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; |