X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fgroupbyid.php;h=5af7109cb4074c3da2670cec4fabb7384a870e4a;hb=61ca2cb6b5f474c3fb7f2b59bbb26b2ba25aa46e;hp=f65bf511afb622d7d70b818f6b6d901f379da68a;hpb=ed2e49477d43bce71c492e8dda65682e8e7863a6;p=quix0rs-gnu-social.git diff --git a/actions/groupbyid.php b/actions/groupbyid.php index f65bf511af..5af7109cb4 100644 --- a/actions/groupbyid.php +++ b/actions/groupbyid.php @@ -71,7 +71,7 @@ class GroupbyidAction extends Action $id = $this->arg('id'); if (!$id) { - $this->clientError(_('No ID')); + $this->clientError(_('No ID.')); return false; } @@ -80,7 +80,7 @@ class GroupbyidAction extends Action $this->group = User_group::staticGet('id', $id); if (!$this->group) { - $this->clientError(_('No such group'), 404); + $this->clientError(_('No such group.'), 404); return false; }