diff options
author | Byron Jones <bjones@mozilla.com> | 2012-11-22 22:39:05 +0800 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-11-22 22:39:05 +0800 |
commit | 4c3e00573133dfc53d07805629af19599aaef7df (patch) | |
tree | e9ce090e958fb60edee1656af12fa414ba79efc3 /Bugzilla/Product.pm | |
parent | Bug 780820: Allows for multiple custom search criteria to match one field (diff) | |
download | bugzilla-4c3e00573133dfc53d07805629af19599aaef7df.tar.gz bugzilla-4c3e00573133dfc53d07805629af19599aaef7df.tar.bz2 bugzilla-4c3e00573133dfc53d07805629af19599aaef7df.zip |
Bug 811280: Adds a caching mechanism to Bugzilla::Object to avoid querying the database repeatedly for the same information
r=dkl,a=LpSolit
Diffstat (limited to 'Bugzilla/Product.pm')
-rw-r--r-- | Bugzilla/Product.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm index 894db422e..536961ce5 100644 --- a/Bugzilla/Product.pm +++ b/Bugzilla/Product.pm @@ -810,8 +810,8 @@ sub flag_types { sub classification { my $self = shift; - $self->{'classification'} ||= - new Bugzilla::Classification($self->classification_id); + $self->{'classification'} ||= + new Bugzilla::Classification({ id => $self->classification_id, cache => 1 }); return $self->{'classification'}; } |