From: Evan Prodromou Date: Thu, 10 Dec 2009 19:40:48 +0000 (-0500) Subject: remove 'has forwarded' method from Profile X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=433106dfc512605f93a1354034c23452fbb3956b;p=quix0rs-gnu-social.git remove 'has forwarded' method from Profile --- diff --git a/classes/Profile.php b/classes/Profile.php index 4c14f62a06..4b2e090064 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -716,12 +716,4 @@ class Profile extends Memcached_DataObject } return $result; } - - function hasForwarded($notice_id) - { - $forward = Forward::pkeyGet(array('profile_id' => $this->id, - 'notice_id' => $notice_id)); - - return (!empty($forward)); - } }