From 47c869edbd1dd9ca5ca2f711c2b77fddd395fd3c Mon Sep 17 00:00:00 2001 From: Ori Avtalion Date: Fri, 9 Jan 2009 23:33:54 +0200 Subject: [PATCH] Removed periods from strings ending with "!." --- lib/subs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/subs.php b/lib/subs.php index 91fc8445d7..a2699f7b99 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');