X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fapitimelinetag.php;h=1184440c7ddd9742f8388ad84130e61b8e53d9e5;hb=df46f123dd656545c80821931f0a384f7dc5d608;hp=b3f17d0712019c9578f92f5fd8aa6dccbfe4b0f2;hpb=220b51d8be61e9bd316567f3ad03fffdbc4b7526;p=quix0rs-gnu-social.git diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index b3f17d0712..1184440c7d 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -51,19 +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 prepare(array $args=array()) { parent::prepare($args); - common_debug("apitimelinetag prepare()"); - $this->tag = $this->arg('tag'); $this->notices = $this->getNotices(); @@ -79,9 +70,9 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) + protected function handle() { - parent::handle($args); + parent::handle(); $this->showTimeline(); } @@ -172,21 +163,12 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction */ function getNotices() { - $notices = array(); - - $notice = Notice_tag::getStream( - $this->tag, - ($this->page - 1) * $this->count, - $this->count + 1, - $this->since_id, - $this->max_id - ); - - while ($notice->fetch()) { - $notices[] = clone($notice); - } + $notice = Notice_tag::getStream($this->tag)->getNotices(($this->page - 1) * $this->count, + $this->count + 1, + $this->since_id, + $this->max_id); - return $notices; + return $notice->fetchAll(); } /**