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
9efb4a41
Commit
9efb4a41
authored
Oct 13, 2001
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 91486: Add "changed from" option to the boolean chart.
Patch by Stephen Lee <slee@uk.bnsmc.com>. r=myk@mozilla.org
parent
eda96005
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
buglist.cgi
buglist.cgi
+9
-0
query.cgi
query.cgi
+1
-0
No files found.
buglist.cgi
View file @
9efb4a41
...
...
@@ -577,6 +577,15 @@ sub GenerateSQL {
push
(
@wherepart
,
"$table.fieldid = $ftable.fieldid"
);
$term
=
"($ftable.name = '$f' AND $table.bug_when > $q)"
;
},
",changedfrom"
=>
sub
{
my
$table
=
"act_$chartid"
;
my
$ftable
=
"fielddefs_$chartid"
;
push
(
@supptables
,
"bugs_activity $table"
);
push
(
@supptables
,
"fielddefs $ftable"
);
push
(
@wherepart
,
"$table.bug_id = bugs.bug_id"
);
push
(
@wherepart
,
"$table.fieldid = $ftable.fieldid"
);
$term
=
"($ftable.name = '$f' AND $table.removed = $q)"
;
},
",changedto"
=>
sub
{
my
$table
=
"act_$chartid"
;
my
$ftable
=
"fielddefs_$chartid"
;
...
...
query.cgi
View file @
9efb4a41
...
...
@@ -890,6 +890,7 @@ my @types = (
["nowords", "none of the words"],
["changedbefore", "changed before"],
["changedafter", "changed after"],
["changedfrom", "changed from"],
["changedto", "changed to"],
["changedby", "changed by"],
);
...
...
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