summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Component.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Component.pm')
-rw-r--r--Bugzilla/Component.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/Bugzilla/Component.pm b/Bugzilla/Component.pm
index 9bc0a4493..3e50dab80 100644
--- a/Bugzilla/Component.pm
+++ b/Bugzilla/Component.pm
@@ -390,10 +390,9 @@ sub initial_cc {
sub product {
my $self = shift;
- if (!defined $self->{'product'}) {
- require Bugzilla::Product; # We cannot |use| it.
- $self->{'product'} = new Bugzilla::Product($self->product_id);
- }
+
+ require Bugzilla::Product;
+ $self->{'product'} ||= Bugzilla::Product->new({ id => $self->product_id, cache => 1 });
return $self->{'product'};
}