Removed periods from strings ending with "!."
This commit is contained in:
parent
f77b98d38a
commit
47c869edbd
@ -44,7 +44,7 @@ function subs_subscribe_user($user, $other_nickname) {
|
|||||||
function subs_subscribe_to($user, $other) {
|
function subs_subscribe_to($user, $other) {
|
||||||
|
|
||||||
if ($user->isSubscribed($other)) {
|
if ($user->isSubscribed($other)) {
|
||||||
return _('Already subscribed!.');
|
return _('Already subscribed!');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($other->hasBlocked($user)) {
|
if ($other->hasBlocked($user)) {
|
||||||
@ -114,7 +114,7 @@ function subs_unsubscribe_user($user, $other_nickname) {
|
|||||||
function subs_unsubscribe_to($user, $other) {
|
function subs_unsubscribe_to($user, $other) {
|
||||||
|
|
||||||
if (!$user->isSubscribed($other))
|
if (!$user->isSubscribed($other))
|
||||||
return _('Not subscribed!.');
|
return _('Not subscribed!');
|
||||||
|
|
||||||
$sub = DB_DataObject::factory('subscription');
|
$sub = DB_DataObject::factory('subscription');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user