diff options
author | gerv%gerv.net <> | 2002-05-09 06:21:25 +0000 |
---|---|---|
committer | gerv%gerv.net <> | 2002-05-09 06:21:25 +0000 |
commit | 1d10fae35ea91b2e038cc8d3942a1860415e5dde (patch) | |
tree | 24e644be45e4d99373fdbca31728db779137d95e /post_bug.cgi | |
parent | Bug 143040 - Tidy up remove parameters message in checksetup.pl. Patch by ger... (diff) | |
download | bugzilla-1d10fae35ea91b2e038cc8d3942a1860415e5dde.tar.gz bugzilla-1d10fae35ea91b2e038cc8d3942a1860415e5dde.tar.bz2 bugzilla-1d10fae35ea91b2e038cc8d3942a1860415e5dde.zip |
Bug 143091 - No email to the qa contact when creating bugs. Patch by gerv; 2xr=justdave.
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index f66d13ee9..5980f714b 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -287,8 +287,8 @@ if (@cc) { push (@ARGLIST, "-forceowner", DBID_to_name($::FORM{assigned_to})); -if (defined $::FORM{qacontact}) { - push (@ARGLIST, "-forceqacontact", DBID_to_name($::FORM{qacontact})); +if (defined $::FORM{'qa_contact'}) { + push (@ARGLIST, "-forceqacontact", DBID_to_name($::FORM{'qa_contact'})); } push (@ARGLIST, "-forcereporter", DBID_to_name($::userid)); |