From: Evan Prodromou Date: Wed, 29 Dec 2010 21:28:32 +0000 (-0800) Subject: Bad method call in File_to_post X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=39cf2338c26d55fced83a0c411550d522f9badd8;p=quix0rs-gnu-social.git Bad method call in File_to_post --- 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(); }