diff options
author | travis%sedsystems.ca <> | 2005-03-11 04:35:18 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-03-11 04:35:18 +0100 |
commit | 93a15275470b50a6afd0e8fa8bb3541e85c0685e (patch) | |
tree | 8a037ede7103129f9d38760edd965df6a515f3a3 /post_bug.cgi | |
parent | e096f6115ec144949103da34495e36fbcc3ee544 (diff) | |
download | bugzilla-93a15275470b50a6afd0e8fa8bb3541e85c0685e.tar.gz bugzilla-93a15275470b50a6afd0e8fa8bb3541e85c0685e.tar.xz |
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
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 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; |