summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Attachment.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-07-21 11:00:20 +0200
committerByron Jones <glob@mozilla.com>2015-07-21 11:00:20 +0200
commitc53d646eec8907a4e9cb027c34bb93801f3c9fdc (patch)
tree4470c035fc133dcfc678c9008b963a75166d68fe /Bugzilla/Attachment.pm
parent19cfefee5bd177bff80095db9d4006293e70301c (diff)
downloadbugzilla-c53d646eec8907a4e9cb027c34bb93801f3c9fdc.tar.gz
bugzilla-c53d646eec8907a4e9cb027c34bb93801f3c9fdc.tar.xz
Bug 1180572 - create attachment_storage parameter
Diffstat (limited to 'Bugzilla/Attachment.pm')
-rw-r--r--Bugzilla/Attachment.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm
index 07fafb11e..c3e48b899 100644
--- a/Bugzilla/Attachment.pm
+++ b/Bugzilla/Attachment.pm
@@ -822,7 +822,7 @@ sub remove_from_db {
$dbh->do('UPDATE attachments SET mimetype = ?, ispatch = ?, isobsolete = ?, attach_size = ?
WHERE attach_id = ?', undef, ('text/plain', 0, 1, 0, $self->id));
$dbh->bz_commit_transaction();
- current_storage->remove($self->id);
+ current_storage()->remove($self->id);
# As we don't call SUPER->remove_from_db we need to manually clear
# memcached here.