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/subs.php | |
parent | e150d920a53cbafaf6ff3f6397fa40f8cc0e526e (diff) |
block subscribes by silenced users
Diffstat (limited to 'lib/subs.php')
-rw-r--r-- | lib/subs.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/subs.php b/lib/subs.php index 2f0f97049..2fc3160de 100644 --- a/lib/subs.php +++ b/lib/subs.php @@ -44,6 +44,10 @@ function subs_subscribe_user($user, $other_nickname) function subs_subscribe_to($user, $other) { + if (!$user->hasRight(Right::SUBSCRIBE)) { + return _('You have been banned from subscribing.'); + } + if ($user->isSubscribed($other)) { return _('Already subscribed!'); } |