summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
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.