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
9d47ee08
Commit
9d47ee08
authored
Aug 13, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 95008: duplicates page no longer ignores verified INVALID/WONTFIX bugs
Patch by Gervase Markham <gervase.markham@univ.ox.ac.au> r= justdave@syndicomm.com
parent
fdc334e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
duplicates.cgi
duplicates.cgi
+9
-5
No files found.
duplicates.cgi
View file @
9d47ee08
...
...
@@ -170,21 +170,25 @@ my $i = 0;
foreach
(
@sortedcount
)
{
my
$id
=
$_
;
SendSQL
(
"SELECT component, bug_severity, op_sys, target_milestone, short_desc, groupset, bug_status"
.
SendSQL
(
"SELECT component, bug_severity, op_sys, target_milestone, short_desc, groupset, bug_status
, resolution
"
.
" FROM bugs WHERE bug_id = $id"
);
my
(
$component
,
$severity
,
$op_sys
,
$milestone
,
$summary
,
$groupset
,
$bug_status
)
=
FetchSQLData
();
my
(
$component
,
$severity
,
$op_sys
,
$milestone
,
$summary
,
$groupset
,
$bug_status
,
$resolution
)
=
FetchSQLData
();
.
next
unless
$groupset
==
0
;
$summary
=
html_quote
(
$summary
);
unless
(
(
$bug_status
eq
"VERIFIED"
)
|
(
$bug_status
eq
"CLOSED"
)
)
{
# Show all bugs except those CLOSED _OR_ VERIFIED but not INVALID or WONTFIX.
# We want to see VERIFIED INVALID and WONTFIX because common "bugs" which aren't
# bugs end up in this state.
unless
(
(
$bug_status
eq
"CLOSED"
)
||
(
(
$bug_status
eq
"VERIFIED"
)
&&
!
(
(
$resolution
eq
"INVALID"
)
||
(
$resolution
eq
"WONTFIX"
)
)
)
)
{
print
"<tr>"
;
print
'<td><center>'
;
if
(
(
$bug_status
eq
"RESOLVED"
)
)
{
if
(
(
$bug_status
eq
"RESOLVED"
)
||
(
$bug_status
eq
"VERIFIED"
)
)
{
print
"<strike>"
;
}
print
"<A HREF=\"show_bug.cgi?id="
.
$id
.
"\">"
;
print
$id
.
"</A>"
;
if
(
(
$bug_status
eq
"RESOLVED"
)
)
{
if
(
(
$bug_status
eq
"RESOLVED"
)
||
(
$bug_status
eq
"VERIFIED"
)
)
{
print
"</strike>"
;
}
print
"</center></td>"
;
...
...
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