Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
8a30977e
Commit
8a30977e
authored
Nov 01, 2002
by
bugreport%peshkin.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 177624 Wildcard rejects --do_not_change-- in mass-change
Patch by not_erik r=joel
parent
cf6262d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
User.pm
Bugzilla/User.pm
+6
-0
No files found.
Bugzilla/User.pm
View file @
8a30977e
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment