summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Attachment.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-12-19 09:56:47 +0100
committerByron Jones <bjones@mozilla.com>2012-12-19 09:56:47 +0100
commit387608caac85ccf6c0782572420ecbdae4e301bf (patch)
treea047006cbf485bb714dea61b39731e28a1366fca /Bugzilla/Attachment.pm
parente068bcc76fe842fbcac8249ed29593f8a17b0c24 (diff)
downloadbugzilla-387608caac85ccf6c0782572420ecbdae4e301bf.tar.gz
bugzilla-387608caac85ccf6c0782572420ecbdae4e301bf.tar.xz
Bug 815532: Add caching for Bugzilla::User objects
r=dkl,a=LpSolit
Diffstat (limited to 'Bugzilla/Attachment.pm')
-rw-r--r--Bugzilla/Attachment.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm
index 3dbd4ce6d..3678424c9 100644
--- a/Bugzilla/Attachment.pm
+++ b/Bugzilla/Attachment.pm
@@ -190,9 +190,8 @@ the user who attached the attachment
sub attacher {
my $self = shift;
- return $self->{attacher} if exists $self->{attacher};
- $self->{attacher} = new Bugzilla::User($self->{submitter_id});
- return $self->{attacher};
+ return $self->{attacher}
+ ||= new Bugzilla::User({ id => $self->{submitter_id}, cache => 1 });
}
=over