summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-07-19 06:20:05 +0200
committermkanat%bugzilla.org <>2006-07-19 06:20:05 +0200
commit78094dfe411b41a33d930c7f0c623cc2eb216c28 (patch)
tree3a683755359017bc2fe1e17e002ddc5e79cac4b0 /Bugzilla/User.pm
parent33bdddf6e4a18a65dbabbf74047090de579f593f (diff)
downloadbugzilla-78094dfe411b41a33d930c7f0c623cc2eb216c28.tar.gz
bugzilla-78094dfe411b41a33d930c7f0c623cc2eb216c28.tar.xz
Bug 339379: Make Bugzilla::Product use Bugzilla::Object
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=myk
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
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);
}