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
9ca7310c
Commit
9ca7310c
authored
Oct 21, 2014
by
David Lawrence
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 1082882: custom date field not recognized as date type in advanced search
r=glob,a=glob
parent
959d0d72
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
Search.pm
Bugzilla/Search.pm
+10
-1
No files found.
Bugzilla/Search.pm
View file @
9ca7310c
...
...
@@ -327,7 +327,9 @@ use constant OPERATOR_FIELD_OVERRIDE => {
# These are fields where special action is taken depending on the
# *value* passed in to the chart, sometimes.
use
constant
SPECIAL_PARSING
=>
{
# This is a sub because custom fields are dynamic
sub
SPECIAL_PARSING
{
my
$map
=
{
# Pronoun Fields (Ones that can accept %user%, etc.)
assigned_to
=>
\&
_contact_pronoun
,
cc
=>
\&
_contact_pronoun
,
...
...
@@ -341,6 +343,13 @@ use constant SPECIAL_PARSING => {
creation_ts
=>
\&
_timestamp_translate
,
deadline
=>
\&
_timestamp_translate
,
delta_ts
=>
\&
_timestamp_translate
,
};
foreach
my
$field
(
Bugzilla
->
active_custom_fields
)
{
if
(
$field
->
type
==
FIELD_TYPE_DATETIME
)
{
$map
->
{
$field
->
name
}
=
\&
_timestamp_translate
;
}
}
return
$map
;
};
# Information about fields that represent "users", used by _user_nonchanged.
...
...
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