From 429de3bad99ca5506bec6d31d999fc08c5e57f43 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Wed, 12 Oct 2005 05:13:06 +0000 Subject: Bug 282090: Eliminate %classdesc in favor of Bugzilla::Classification methods Patch By Max Kanat-Alexander r=wicked, a=justdave --- globals.pl | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'globals.pl') diff --git a/globals.pl b/globals.pl index ac502f39a..4d21b088b 100644 --- a/globals.pl +++ b/globals.pl @@ -58,7 +58,6 @@ sub globals_pl_sillyness { $zz = @main::legal_versions; $zz = @main::milestoneurl; $zz = %main::proddesc; - $zz = %main::classdesc; $zz = @main::prodmaxvotes; $zz = $main::template; $zz = $main::userid; @@ -162,12 +161,6 @@ sub GenerateVersionTable { my $mpart = $dotargetmilestone ? ", milestoneurl" : ""; - SendSQL("SELECT name, description FROM classifications ORDER BY name"); - while (@line = FetchSQLData()) { - my ($n, $d) = (@line); - $::classdesc{$n} = $d; - } - SendSQL("SELECT name, description, votesperuser, disallownew$mpart " . "FROM products ORDER BY name"); while (@line = FetchSQLData()) { @@ -252,10 +245,10 @@ sub GenerateVersionTable { '*::legal_bug_status', '*::legal_resolution'])); print $fh (Data::Dumper->Dump([\@::settable_resolution, \%::proddesc, - \%::classifications, \%::classdesc, + \%::classifications, \@::enterable_products, \%::prodmaxvotes], ['*::settable_resolution', '*::proddesc', - '*::classifications', '*::classdesc', + '*::classifications', '*::enterable_products', '*::prodmaxvotes'])); if ($dotargetmilestone) { -- cgit v1.2.3-24-g4f1b