diff options
Diffstat (limited to 'lib/subs.php')
-rw-r--r-- | lib/subs.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/subs.php b/lib/subs.php index 68c89c842..2fc3160de 100644 --- a/lib/subs.php +++ b/lib/subs.php @@ -44,8 +44,12 @@ 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!.'); + return _('Already subscribed!'); } if ($other->hasBlocked($user)) { @@ -121,7 +125,7 @@ function subs_unsubscribe_user($user, $other_nickname) function subs_unsubscribe_to($user, $other) { if (!$user->isSubscribed($other)) - return _('Not subscribed!.'); + return _('Not subscribed!'); $sub = DB_DataObject::factory('subscription'); |