Commit 429de3ba authored by mkanat%kerio.com's avatar mkanat%kerio.com

Bug 282090: Eliminate %classdesc in favor of Bugzilla::Classification methods

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=wicked, a=justdave
parent b02a866f
...@@ -56,7 +56,6 @@ use vars qw( ...@@ -56,7 +56,6 @@ use vars qw(
%versions %versions
%target_milestone %target_milestone
$proddesc $proddesc
$classdesc
); );
# If we're using bug groups to restrict bug entry, we need to know who the # If we're using bug groups to restrict bug entry, we need to know who the
...@@ -75,9 +74,9 @@ if (!defined $product || $product eq "") { ...@@ -75,9 +74,9 @@ if (!defined $product || $product eq "") {
Bugzilla->login(); Bugzilla->login();
if ( ! Param('useclassification') ) { if ( ! Param('useclassification') ) {
# just pick the default one # Just use a fake value for the Classification.
$cgi->param(-name => 'classification', $cgi->param(-name => 'classification',
-value => (keys %::classdesc)[0]); -value => '__all');
} }
if (!$cgi->param('classification')) { if (!$cgi->param('classification')) {
...@@ -142,7 +141,6 @@ if (!defined $product || $product eq "") { ...@@ -142,7 +141,6 @@ if (!defined $product || $product eq "") {
} }
$vars->{'proddesc'} = \%products; $vars->{'proddesc'} = \%products;
$vars->{'classifications'} = \%classifications; $vars->{'classifications'} = \%classifications;
$vars->{'classdesc'} = \%::classdesc;
$vars->{'target'} = "enter_bug.cgi"; $vars->{'target'} = "enter_bug.cgi";
$vars->{'format'} = $cgi->param('format'); $vars->{'format'} = $cgi->param('format');
......
...@@ -58,7 +58,6 @@ sub globals_pl_sillyness { ...@@ -58,7 +58,6 @@ sub globals_pl_sillyness {
$zz = @main::legal_versions; $zz = @main::legal_versions;
$zz = @main::milestoneurl; $zz = @main::milestoneurl;
$zz = %main::proddesc; $zz = %main::proddesc;
$zz = %main::classdesc;
$zz = @main::prodmaxvotes; $zz = @main::prodmaxvotes;
$zz = $main::template; $zz = $main::template;
$zz = $main::userid; $zz = $main::userid;
...@@ -162,12 +161,6 @@ sub GenerateVersionTable { ...@@ -162,12 +161,6 @@ sub GenerateVersionTable {
my $mpart = $dotargetmilestone ? ", milestoneurl" : ""; 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 " . SendSQL("SELECT name, description, votesperuser, disallownew$mpart " .
"FROM products ORDER BY name"); "FROM products ORDER BY name");
while (@line = FetchSQLData()) { while (@line = FetchSQLData()) {
...@@ -252,10 +245,10 @@ sub GenerateVersionTable { ...@@ -252,10 +245,10 @@ sub GenerateVersionTable {
'*::legal_bug_status', '*::legal_resolution'])); '*::legal_bug_status', '*::legal_resolution']));
print $fh (Data::Dumper->Dump([\@::settable_resolution, \%::proddesc, print $fh (Data::Dumper->Dump([\@::settable_resolution, \%::proddesc,
\%::classifications, \%::classdesc, \%::classifications,
\@::enterable_products, \%::prodmaxvotes], \@::enterable_products, \%::prodmaxvotes],
['*::settable_resolution', '*::proddesc', ['*::settable_resolution', '*::proddesc',
'*::classifications', '*::classdesc', '*::classifications',
'*::enterable_products', '*::prodmaxvotes'])); '*::enterable_products', '*::prodmaxvotes']));
if ($dotargetmilestone) { if ($dotargetmilestone) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment