diff options
author | Evan Prodromou <evan@status.net> | 2009-11-16 14:12:35 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-16 14:12:35 -0500 |
commit | 2ad4de45e6b0f7edc629fb08346d978039f1c8a3 (patch) | |
tree | 9434c9946ae20220edddfcef87cfbed3b195e26e /lib/oauthstore.php | |
parent | e150d920a53cbafaf6ff3f6397fa40f8cc0e526e (diff) |
block subscribes by silenced users
Diffstat (limited to 'lib/oauthstore.php')
-rw-r--r-- | lib/oauthstore.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/oauthstore.php b/lib/oauthstore.php index a4ea5ad4d..b04bcbb8b 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -462,6 +462,10 @@ class StatusNetOAuthDataStore extends OAuthDataStore $subscribed = $this->_getAnyProfile($subscribed_user_uri); $subscriber = $this->_getAnyProfile($subscriber_uri); + if (!$subscriber->hasRight(Right::SUBSCRIBE)) { + return _('You have been banned from subscribing.'); + } + $sub->subscribed = $subscribed->id; $sub->subscriber = $subscriber->id; |