diff options
author | Evan Prodromou <evan@status.net> | 2009-12-10 14:40:48 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-10 14:40:48 -0500 |
commit | 433106dfc512605f93a1354034c23452fbb3956b (patch) | |
tree | ec9c13da0b56dacc68e33ab5e09fef63571beeb6 /classes | |
parent | 344c99df02fb34dcca02f36bee7cb66489742105 (diff) |
remove 'has forwarded' method from Profile
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Profile.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index 4c14f62a0..4b2e09006 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)); - } } |