X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fgrouprss.php;h=866fc66eb117685ef60c8ee6b21563d594097e63;hb=7ef6c9da437b504f949dc3d7d8c05f8abe36baae;hp=50e48a67e9ea7121e462fdbcc5b2ef0a2063f9fe;hpb=ac47015e2b9b4a82ef497d203fb971b7f128ad41;p=quix0rs-gnu-social.git diff --git a/actions/grouprss.php b/actions/grouprss.php index 50e48a67e9..866fc66eb1 100644 --- a/actions/grouprss.php +++ b/actions/grouprss.php @@ -88,14 +88,14 @@ class groupRssAction extends Rss10Action } if (!$nickname) { - $this->clientError(_('No nickname'), 404); + $this->clientError(_('No nickname.'), 404); return false; } $this->group = User_group::staticGet('nickname', $nickname); if (!$this->group) { - $this->clientError(_('No such group'), 404); + $this->clientError(_('No such group.'), 404); return false; }