From 7654b510a59a829d15798337ab4cc87a860013c9 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Sat, 8 Nov 2003 08:25:21 +0000 Subject: Bug 222564 - The chart made when creating a new Product/Component is not public. Patch by gerv; r=kiko, a=justdave. --- checksetup.pl | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 15d5231fb..da8715c4d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3713,10 +3713,9 @@ if (!$series_exists) { foreach my $field (@fields) { # Create a Series for each field in this product - my $series = new Bugzilla::Series(-1, $product, $all_name, + my $series = new Bugzilla::Series($product, $all_name, $field, $::userid, 1, - $queries{$field}); - $series->createInDatabase(); + $queries{$field}, 1); $seriesids{$field} = $series->{'series_id'}; } @@ -3724,10 +3723,9 @@ if (!$series_exists) { # the same set as new products (see editproducts.cgi.) my @openedstatuses = ("UNCONFIRMED", "NEW", "ASSIGNED", "REOPENED"); my $query = join("&", map { "bug_status=$_" } @openedstatuses); - my $series = new Bugzilla::Series(-1, $product, $all_name, + my $series = new Bugzilla::Series($product, $all_name, $open_name, $::userid, 1, - $query_prod . $query); - $series->createInDatabase(); + $query_prod . $query, 1); # Now, we attempt to read in historical data, if any # Convert the name in the same way that collectstats.pl does -- cgit v1.2.3-24-g4f1b