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
1772e786
Commit
1772e786
authored
Sep 11, 2004
by
justdave%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 255663: Query on [Bug creation] and anything to do with attachments no longer crashes
r=joel, a=myk
parent
be9e174d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Search.pm
Bugzilla/Search.pm
+2
-2
No files found.
Bugzilla/Search.pm
View file @
1772e786
...
...
@@ -264,8 +264,8 @@ sub init {
# Treat [Bug creation] differently because we need to look
# at bugs.creation_ts rather than the bugs_activity table.
my
@l
;
push
(
@l
,
"creation_ts >= $sql_chfrom"
)
if
(
$sql_chfrom
);
push
(
@l
,
"creation_ts <= $sql_chto"
)
if
(
$sql_chto
);
push
(
@l
,
"
bugs.
creation_ts >= $sql_chfrom"
)
if
(
$sql_chfrom
);
push
(
@l
,
"
bugs.
creation_ts <= $sql_chto"
)
if
(
$sql_chto
);
$bug_creation_clause
=
"("
.
join
(
' AND '
,
@l
)
.
")"
;
}
else
{
push
(
@list
,
"\nactcheck.fieldid = "
.
&::
GetFieldID
(
$f
));
...
...
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