From: Ori Avtalion Date: Fri, 9 Jan 2009 21:33:54 +0000 (+0200) Subject: Removed periods from strings ending with "!." X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=47c869edbd1dd9ca5ca2f711c2b77fddd395fd3c;p=quix0rs-gnu-social.git Removed periods from strings ending with "!." --- 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');