summaryrefslogtreecommitdiff
path: root/lib/subs.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subs.php')
-rw-r--r--lib/subs.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/subs.php b/lib/subs.php
index 91fc8445d..a2699f7b9 100644
--- a/lib/subs.php
+++ b/lib/subs.php
@@ -44,7 +44,7 @@ function subs_subscribe_user($user, $other_nickname) {
function subs_subscribe_to($user, $other) {
if ($user->isSubscribed($other)) {
- return _('Already subscribed!.');
+ return _('Already subscribed!');
}
if ($other->hasBlocked($user)) {
@@ -114,7 +114,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');