]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove unused subs_(un)subscribe_user functions
authorEvan Prodromou <evan@status.net>
Fri, 19 Feb 2010 13:31:46 +0000 (08:31 -0500)
committerEvan Prodromou <evan@status.net>
Fri, 19 Feb 2010 13:31:46 +0000 (08:31 -0500)
lib/subs.php

index 5376e21bda11a6962101d7b797be9c3b7f9040d6..1c240c475d40c7f71fd428de44eec07499dc3baa 100644 (file)
 
 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 {