]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove 'has forwarded' method from Profile
authorEvan Prodromou <evan@status.net>
Thu, 10 Dec 2009 19:40:48 +0000 (14:40 -0500)
committerEvan Prodromou <evan@status.net>
Thu, 10 Dec 2009 19:40:48 +0000 (14:40 -0500)
classes/Profile.php

index 4c14f62a06c71611a2b49b879f17ced46b317b52..4b2e0900647b29a20204ed63345a6665e2df69c5 100644 (file)
@@ -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));
-    }
 }