names that have a "/" in them.
foreach (@::legal_product)
{
my $dir = "data/mining";
+
&check_data_dir ($dir);
&collect_stats ($dir, $_);
}
(bug_status='NEW' or bug_status='ASSIGNED' or bug_status='REOPENED')
and product='$product' group by bug_status
FIN
-
+ $product =~ s/\//-/gs;
my $file = join '/', $dir, $product;
my $exists = -f $file;
my @dates;
my @open; my @assigned; my @reopened;
- my $file = join '/', $dir, $::FORM{'product'};
+ my $prodname = $::FORM{'product'};
+
+ $prodname =~ s/\//-/gs;
+
+ my $file = join '/', $dir, $prodname;
my $image = "$file.gif";
if (! open FILE, $file)