summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-01-20 09:22:25 +0100
committermkanat%bugzilla.org <>2008-01-20 09:22:25 +0100
commitb30573c8373fe6fd6438e161efc9201e680e1285 (patch)
tree6d1be8102f9d2678f1486c5b2b981022030e57fb /Bugzilla/User.pm
parente4666b62480a4fa2e36493ce0315b76b7b759073 (diff)
downloadbugzilla-b30573c8373fe6fd6438e161efc9201e680e1285.tar.gz
bugzilla-b30573c8373fe6fd6438e161efc9201e680e1285.tar.xz
Bug 412836: Clean up process_bug.cgi now that we have Bugzilla::Bug->update
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm6
1 files changed, 0 insertions, 6 deletions
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.