diff options
author | mkanat%bugzilla.org <> | 2006-07-19 06:20:05 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-07-19 06:20:05 +0200 |
commit | 78094dfe411b41a33d930c7f0c623cc2eb216c28 (patch) | |
tree | 3a683755359017bc2fe1e17e002ddc5e79cac4b0 /editflagtypes.cgi | |
parent | 33bdddf6e4a18a65dbabbf74047090de579f593f (diff) | |
download | bugzilla-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 'editflagtypes.cgi')
-rwxr-xr-x | editflagtypes.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |