From b30573c8373fe6fd6438e161efc9201e680e1285 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sun, 20 Jan 2008 08:22:25 +0000 Subject: Bug 412836: Clean up process_bug.cgi now that we have Bugzilla::Bug->update Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit --- Bugzilla/User.pm | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index c983122e4..5f9e2228c 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1151,9 +1151,6 @@ sub match_field { # prepare default form values - # What does a "--do_not_change--" field look like (if any)? - my $dontchange = $cgi->param('dontchange'); - # Fields can be regular expressions matching multiple form fields # (f.e. "requestee-(\d+)"), so expand each non-literal field # into the list of form fields it matches. @@ -1212,9 +1209,6 @@ sub match_field { next if !defined $cgi->param($field); - # Skip it if this is a --do_not_change-- field - next if $dontchange && $dontchange eq $cgi->param($field); - # We need to move the query to $raw_field, where it will be split up, # modified by the search, and put back into the CGI environment # incrementally. -- cgit v1.2.3-24-g4f1b