From: gerv%gerv.net <> Date: Thu, 9 May 2002 06:21:25 +0000 (+0000) Subject: Bug 143091 - No email to the qa contact when creating bugs. Patch by gerv; 2xr=justdave. X-Git-Tag: bugzilla-2.16rc1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d10fae35ea91b2e038cc8d3942a1860415e5dde;p=thirdparty%2Fbugzilla.git Bug 143091 - No email to the qa contact when creating bugs. Patch by gerv; 2xr=justdave. --- diff --git a/post_bug.cgi b/post_bug.cgi index f66d13ee99..5980f714bb 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));