From: bugreport%peshkin.net <> Date: Fri, 1 Nov 2002 06:20:26 +0000 (+0000) Subject: Bug 177624 Wildcard rejects --do_not_change-- in mass-change X-Git-Tag: bugzilla-2.17.1~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a30977ef72b7501fa2db8259816bbc396f5b5f2;p=thirdparty%2Fbugzilla.git Bug 177624 Wildcard rejects --do_not_change-- in mass-change Patch by not_erik r=joel --- diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 087dc11138..3e5cce9906 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -214,6 +214,9 @@ sub match_field { $vars->{'form'} = \%::FORM; $vars->{'mform'} = \%::MFORM; + # What does a "--do_not_change--" field look like (if any)? + my $dontchange = $vars->{'form'}->{'dontchange'}; + # Skip all of this if the option has been turned off return 1 if (&::Param('usermatchmode') eq 'off'); @@ -229,6 +232,9 @@ sub match_field { next if !defined($vars->{'mform'}->{$field}); + # Skip it if this is a --do_not_change-- field + next if $dontchange eq $vars->{'form'}->{$field}; + # We need to move the query to $raw_field, where it will be split up, # modified by the search, and put back into $::FORM and $::MFORM # incrementally.