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 --- Bugzilla/User.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index a5a502446..5133bc5f5 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -632,7 +632,7 @@ sub get_enterable_products { } my @products; - foreach my $product (Bugzilla::Product::get_all_products()) { + foreach my $product (Bugzilla::Product->get_all) { if ($self->can_enter_product($product->name)) { push(@products, $product); } -- cgit v1.2.3-24-g4f1b