summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Product.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Product.pm')
-rw-r--r--Bugzilla/Product.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm
index 5405b1651..e7f33ecce 100644
--- a/Bugzilla/Product.pm
+++ b/Bugzilla/Product.pm
@@ -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);
}