From 78094dfe411b41a33d930c7f0c623cc2eb216c28 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Wed, 19 Jul 2006 04:20:05 +0000 Subject: Bug 339379: Make Bugzilla::Product use Bugzilla::Object Patch By Max Kanat-Alexander r=LpSolit, a=myk --- editflagtypes.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editflagtypes.cgi') diff --git a/editflagtypes.cgi b/editflagtypes.cgi index 61dafa923..79bf0dd72 100755 --- a/editflagtypes.cgi +++ b/editflagtypes.cgi @@ -517,7 +517,7 @@ sub deactivate { sub get_products_and_components { my $vars = shift; - my @products = Bugzilla::Product::get_all_products(); + my @products = Bugzilla::Product->get_all; # We require all unique component names. my %components; foreach my $product (@products) { -- cgit v1.2.3-24-g4f1b