]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
protected handle function without args for Action
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 14 Oct 2013 12:00:12 +0000 (14:00 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 14 Oct 2013 12:00:12 +0000 (14:00 +0200)
actions/userbyid.php

index aa96993e6f39786f9728955284b976a0990266b1..09fb4258d9c4a3c4fd0a27813c47707d77e6042e 100644 (file)
@@ -61,9 +61,9 @@ class UserbyidAction extends Action
      *
      * @return nothing
      */
-    function handle($args)
+    protected function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $id = $this->trimmed('id');
         if (!$id) {
             // TRANS: Client error displayed trying to find a user by ID without providing an ID.