]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/tag.php
Merge branch 'master' into social-master
[quix0rs-gnu-social.git] / actions / tag.php
index 0fc2c5152e530acb3b186503ba4b305819a1bc64..8631082467b44ccf71cdf1bb7599dd455fcd7a00 100644 (file)
@@ -49,8 +49,8 @@ class TagAction extends ManagedAction
         $this->notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
 
         if($this->page > 1 && $this->notice->N == 0){
-            // TRANS: Server error when page not found (404).
-            $this->serverError(_('No such page.'),$code=404);
+            // TRANS: Client error when page not found (404).
+            $this->clientError(_('No such page.'), 404);
         }
 
         return true;
@@ -121,7 +121,7 @@ class TagAction extends ManagedAction
         }
     }
 
-    function isReadOnly($args)
+    function isReadOnly(array $args=array())
     {
         return true;
     }