diff options
author | Evan Prodromou <evan@status.net> | 2010-02-19 08:31:46 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-02-19 08:31:46 -0500 |
commit | 512e8b69f1e6020e97835f1c5c492c2be3eff4c1 (patch) | |
tree | 32e8aefa6ad238b6db1cff221a80154775ac44ce /lib/subs.php | |
parent | b0a75a2ab24673452674a8f296ca4dbb110bed6b (diff) |
remove unused subs_(un)subscribe_user functions
Diffstat (limited to 'lib/subs.php')
-rw-r--r-- | lib/subs.php | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/subs.php b/lib/subs.php index 5376e21bd..1c240c475 100644 --- a/lib/subs.php +++ b/lib/subs.php @@ -19,22 +19,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -/* Subscribe $user to nickname $other_nickname - Returns true or an error message. -*/ - -function subs_subscribe_user($user, $other_nickname) -{ - - $other = User::staticGet('nickname', $other_nickname); - - if (!$other) { - return _('No such user.'); - } - - return subs_subscribe_to($user, $other); -} - /* Subscribe user $user to other user $other. * Note: $other must be a local user, not a remote profile. * Because the other way is quite a bit more complicated. @@ -50,22 +34,6 @@ function subs_subscribe_to($user, $other) } } -/* Unsubscribe $user from nickname $other_nickname - Returns true or an error message. -*/ - -function subs_unsubscribe_user($user, $other_nickname) -{ - - $other = User::staticGet('nickname', $other_nickname); - - if (!$other) { - return _('No such user.'); - } - - return subs_unsubscribe_to($user, $other->getProfile()); -} - function subs_unsubscribe_to($user, $other) { try { |