summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchecksetup.pl2
-rwxr-xr-xdoeditparams.cgi6
2 files changed, 1 insertions, 7 deletions
diff --git a/checksetup.pl b/checksetup.pl
index b349a3065..561d6fd4c 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -1097,7 +1097,7 @@ AddFDef("component", "Component", 1);
AddFDef("assigned_to", "AssignedTo", 1);
AddFDef("reporter", "ReportedBy", 1);
AddFDef("votes", "Votes", 0);
-AddFDef("qa_contact", "QAContact", 0);
+AddFDef("qa_contact", "QAContact", 1);
AddFDef("cc", "CC", 1);
AddFDef("dependson", "BugsThisDependsOn", 0);
AddFDef("blocked", "OtherBugsDependingOnThis", 0);
diff --git a/doeditparams.cgi b/doeditparams.cgi
index 3d95637fe..06019b817 100755
--- a/doeditparams.cgi
+++ b/doeditparams.cgi
@@ -68,12 +68,6 @@ foreach my $i (@::param_list) {
# print "Old: '" . url_quote(Param($i)) . "'<BR>\n";
# print "New: '" . url_quote($::FORM{$i}) . "'<BR>\n";
$::param{$i} = $::FORM{$i};
- # If the useqacontact Param is changing, update the mailheader
- if ($i eq 'useqacontact') {
- print "&nbsp;&nbsp;&nbsp;- Updating mailhead information<br>\n";
- SendSQL("UPDATE fielddefs SET mailhead = " . SqlQuote($::param{$i}) .
- "WHERE name = 'qa_contact'");
- }
}
}