From 39cf2338c26d55fced83a0c411550d522f9badd8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 29 Dec 2010 13:28:32 -0800 Subject: [PATCH] Bad method call in File_to_post --- classes/File_to_post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/File_to_post.php b/classes/File_to_post.php index 7d417d58b7..bcb6771f4f 100644 --- a/classes/File_to_post.php +++ b/classes/File_to_post.php @@ -56,7 +56,7 @@ class File_to_post extends Memcached_DataObject $f = File::staticGet($file_id); if (!empty($f)) { - $f->blowNoticeCache(); + $f->blowCache(); } } @@ -77,7 +77,7 @@ class File_to_post extends Memcached_DataObject { $f = File::staticGet('id', $this->file_id); if (!empty($f)) { - $f->blowNoticeCache(); + $f->blowCache(); } return parent::delete(); }