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
2baddffa
Commit
2baddffa
authored
May 05, 2013
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 212471: Tabular reports do not link bug counts involving the empty resolution correctly
r=dkl a=LpSolit
parent
ac33bc1f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
report.cgi
report.cgi
+2
-1
No files found.
report.cgi
View file @
2baddffa
...
@@ -352,7 +352,7 @@ sub get_names {
...
@@ -352,7 +352,7 @@ sub get_names {
foreach
my
$value
(
@
{
$field
->
legal_values
})
{
foreach
my
$value
(
@
{
$field
->
legal_values
})
{
push
(
@sorted
,
$value
->
name
)
if
$names
->
{
$value
->
name
};
push
(
@sorted
,
$value
->
name
)
if
$names
->
{
$value
->
name
};
}
}
unshift
(
@sorted
,
'
'
)
if
$field_name
eq
'resolution'
;
unshift
(
@sorted
,
'
---
'
)
if
$field_name
eq
'resolution'
;
@sorted
=
uniq
@sorted
;
@sorted
=
uniq
@sorted
;
}
}
elsif
(
$isnumeric
)
{
elsif
(
$isnumeric
)
{
...
@@ -381,6 +381,7 @@ sub check_value {
...
@@ -381,6 +381,7 @@ sub check_value {
else
{
else
{
$value
=
shift
@$result
;
$value
=
shift
@$result
;
$value
=
' '
if
(
!
defined
$value
||
$value
eq
''
);
$value
=
' '
if
(
!
defined
$value
||
$value
eq
''
);
$value
=
'---'
if
(
$field
eq
'resolution'
&&
$value
eq
' '
);
}
}
return
$value
;
return
$value
;
}
}
...
...
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