aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-06-21 22:03:10 +0000
committerjustdave%syndicomm.com <>2001-06-21 22:03:10 +0000
commitb6622d0c8e5c133e84b1738f94d318816319dbc6 (patch)
tree478e16355f5486a4b82aea335f3e1e2eff1e28fa /doeditparams.cgi
parentFix for "used only once" error reported by tinderbox after the last checkin. ... (diff)
downloadbugzilla-b6622d0c8e5c133e84b1738f94d318816319dbc6.tar.gz
bugzilla-b6622d0c8e5c133e84b1738f94d318816319dbc6.tar.bz2
bugzilla-b6622d0c8e5c133e84b1738f94d318816319dbc6.zip
Re-fix for bug 28458: AddFDef always replaces the fielddefs every time you run checksetup.pl, so the change to them during doeditparams was nullified if you updated. Other recent changes have nullified the reason for changing it in editparams anyway, so just backing that part out.
Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
Diffstat (limited to 'doeditparams.cgi')
-rwxr-xr-xdoeditparams.cgi6
1 files changed, 0 insertions, 6 deletions
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'");
- }
}
}