X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapitimelinetag.php;h=434c22bb041adfdcb2549f4325a5a5eb35fa8dee;hb=fe11f9a28c8ef2df46e09c53276f8d2184b03f2e;hp=5bc330a26eb485929f88cfa5f45fea9eb25a24f3;hpb=1d46ca45d162205bf6e2fa3e9a926c2d9c6ea583;p=quix0rs-gnu-social.git diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index 5bc330a26e..434c22bb04 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -35,8 +35,6 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/apiprivateauth.php'; - /** * Returns the 20 most recent notices tagged by a given tag * @@ -60,7 +58,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return boolean success flag */ - function prepare($args) + function prepare(array $args=array()) { parent::prepare($args); @@ -81,7 +79,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) + function handle(array $args=array()) { parent::handle($args); $this->showTimeline(); @@ -179,7 +177,9 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $notice = Notice_tag::getStream( $this->tag, ($this->page - 1) * $this->count, - $this->count + 1 + $this->count + 1, + $this->since_id, + $this->max_id ); while ($notice->fetch()) { @@ -196,7 +196,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return boolean true */ - function isReadOnly($args) + function isReadOnly(array $args=array()) { return true; }