]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/grouprss.php
Fix inconsistent title case in page title
[quix0rs-gnu-social.git] / actions / grouprss.php
index 50e48a67e9ea7121e462fdbcc5b2ef0a2063f9fe..866fc66eb117685ef60c8ee6b21563d594097e63 100644 (file)
@@ -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;
         }