]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/public.php
Fix inconsistencies in clientError() messages
[quix0rs-gnu-social.git] / actions / public.php
index 50278bfcedab55a80c9fe2c2ed359ad79399e727..5fc547feaf632613a04d11a647c51b5afdd49588 100644 (file)
@@ -80,7 +80,7 @@ class PublicAction extends Action
         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
 
         if ($this->page > MAX_PUBLIC_PAGE) {
-            $this->clientError(sprintf(_("Beyond the page limit (%s)"), MAX_PUBLIC_PAGE));
+            $this->clientError(sprintf(_("Beyond the page limit (%s)."), MAX_PUBLIC_PAGE));
         }
 
         common_set_returnto($this->selfUrl());
@@ -94,7 +94,8 @@ class PublicAction extends Action
         }
 
         if($this->page > 1 && $this->notice->N == 0){
-            $this->serverError(_('No such page'),$code=404);
+            // TRANS: Server error when page not found (404)
+            $this->serverError(_('No such page.'),$code=404);
         }
 
         return true;