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
0f76ed49
Commit
0f76ed49
authored
Jan 28, 2014
by
Byron Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert accidential change in the fix for Bug 76498
parent
7d78ee7f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Quicksearch.pm
Bugzilla/Search/Quicksearch.pm
+3
-3
No files found.
Bugzilla/Search/Quicksearch.pm
View file @
0f76ed49
...
...
@@ -403,10 +403,10 @@ sub _handle_field_names {
# Generic field1,field2,field3:value1,value2 notation.
# We have to correctly ignore commas and colons in quotes.
foreach
my
$symbol
(
keys
%
{
OPERATOR_SYMBOLS
()
})
{
my
@field_values
=
parse_line
(
$symbol
,
1
,
$or_operand
);
my
@field_values
=
_
parse_line
(
$symbol
,
1
,
$or_operand
);
next
unless
scalar
@field_values
==
2
;
my
@fields
=
parse_line
(
','
,
1
,
$field_values
[
0
]);
my
@values
=
parse_line
(
','
,
1
,
$field_values
[
1
]);
my
@fields
=
_
parse_line
(
','
,
1
,
$field_values
[
0
]);
my
@values
=
_
parse_line
(
','
,
1
,
$field_values
[
1
]);
foreach
my
$field
(
@fields
)
{
my
$translated
=
_translate_field_name
(
$field
);
# Skip and record any unknown fields
...
...
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