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
ec0b0fd3
Commit
ec0b0fd3
authored
Sep 13, 2000
by
cyeh%bluemartini.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for 44653: Products with / in don't get any chart data
patch submitted by gavins@iplbath.com
parent
6af45043
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
collectstats.pl
collectstats.pl
+5
-3
No files found.
collectstats.pl
View file @
ec0b0fd3
...
...
@@ -57,9 +57,11 @@ sub collect_stats {
my
$product
=
shift
;
my
$when
=
localtime
(
time
);
$product
=~
s/\//-/gs
;
my
$file
=
join
'/'
,
$dir
,
$product
;
# NB: Need to mangle the product for the filename, but use the real
# product name in the query
my
$file_product
=
$product
;
$file_product
=~
s/\//-/gs
;
my
$file
=
join
'/'
,
$dir
,
$file_product
;
my
$exists
=
-
f
$file
;
if
(
open
DATA
,
">>$file"
)
{
...
...
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