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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
61fa0b00
Commit
61fa0b00
authored
Apr 27, 2003
by
gerv%gerv.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 197171 - report.cgi: Use of uninitialized value in numeric lt. Patch by gerv; r,a=justdave.
parent
8449ddc1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
report.cgi
report.cgi
+1
-3
report.html.tmpl
template/en/default/reports/report.html.tmpl
+4
-0
No files found.
report.cgi
View file @
61fa0b00
...
...
@@ -214,9 +214,7 @@ if ($cgi->param('format') eq "bar") {
$min_width
*=
(
scalar
(
@row_names
)
||
1
);
}
if
(
$width
<
$min_width
)
{
$width
=
$min_width
;
}
$vars
->
{
'min_width'
}
=
$min_width
;
}
$vars
->
{
'width'
}
=
$width
if
$width
;
...
...
template/en/default/reports/report.html.tmpl
View file @
61fa0b00
...
...
@@ -37,6 +37,10 @@
height = 350
%]
[% IF min_width AND width < min_width %]
[% width = min_width %]
[% END %]
[%# We ignore row_field for pie charts %]
[% IF format == "pie" %]
[% row_field = "" %]
...
...
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