Commit cdc7464e authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 342238: There is a dependency loop between Bugzilla::User and Bugzilla::Component

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=bkor, a=myk
parent 2cbbaecd
......@@ -18,7 +18,6 @@ use strict;
package Bugzilla::Product;
use Bugzilla::Component;
use Bugzilla::Version;
use Bugzilla::Milestone;
......@@ -107,6 +106,7 @@ sub components {
ORDER BY name}, undef, $self->id);
my @components;
require Bugzilla::Component;
foreach my $id (@$ids) {
push @components, new Bugzilla::Component($id);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment