]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Mismatching function declarations.
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 4 Jul 2015 17:51:36 +0000 (19:51 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 4 Jul 2015 17:51:36 +0000 (19:51 +0200)
actions/apitimelinetag.php

index 632714551f95e6dc63d42a0dec8cdb7f0f03c6b0..04a4727a9d8bfe7ddc0cb3a4dfe8d134509953df 100644 (file)
@@ -51,23 +51,10 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
 {
     var $notices = null;
 
-    /**
-     * Take arguments for running
-     *
-     * @param array $args $_REQUEST args
-     *
-     * @return boolean success flag
-     */
-    function prepare($args)
+    protected function doPreparation()
     {
-        parent::prepare($args);
-
-        common_debug("apitimelinetag prepare()");
-
         $this->tag     = $this->arg('tag');
         $this->notices = $this->getNotices();
-
-        return true;
     }
 
     /**
@@ -79,9 +66,9 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
      *
      * @return void
      */
-    function handle($args)
+    protected function handle()
     {
-        parent::handle($args);
+        parent::handle();
         $this->showTimeline();
     }