diff options
author | mkanat%bugzilla.org <> | 2006-07-19 04:20:05 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-07-19 04:20:05 +0000 |
commit | 78094dfe411b41a33d930c7f0c623cc2eb216c28 (patch) | |
tree | 3a683755359017bc2fe1e17e002ddc5e79cac4b0 /editflagtypes.cgi | |
parent | Bug 345104: $field_descs values in field_descs.none.html are overwritten by v... (diff) | |
download | bugzilla-78094dfe411b41a33d930c7f0c623cc2eb216c28.tar.gz bugzilla-78094dfe411b41a33d930c7f0c623cc2eb216c28.tar.bz2 bugzilla-78094dfe411b41a33d930c7f0c623cc2eb216c28.zip |
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) { |