diff options
author | justdave%syndicomm.com <> | 2001-06-21 22:03:10 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-21 22:03:10 +0000 |
commit | b6622d0c8e5c133e84b1738f94d318816319dbc6 (patch) | |
tree | 478e16355f5486a4b82aea335f3e1e2eff1e28fa /doeditparams.cgi | |
parent | 5f4abd291a30ca64260d69c364f92112a54c321e (diff) | |
download | bugs-b6622d0c8e5c133e84b1738f94d318816319dbc6.tar bugs-b6622d0c8e5c133e84b1738f94d318816319dbc6.tar.gz bugs-b6622d0c8e5c133e84b1738f94d318816319dbc6.tar.bz2 bugs-b6622d0c8e5c133e84b1738f94d318816319dbc6.tar.xz bugs-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-x | doeditparams.cgi | 6 |
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 " - Updating mailhead information<br>\n"; - SendSQL("UPDATE fielddefs SET mailhead = " . SqlQuote($::param{$i}) . - "WHERE name = 'qa_contact'"); - } } } |