summaryrefslogtreecommitdiff
path: root/actions/apitimelinetag.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-09 17:32:53 -0700
committerZach Copley <zach@status.net>2009-10-09 17:32:53 -0700
commitb08d16ef2bf5995ca2feee2d2688e0080eaf5124 (patch)
treeec4f7e232f8508c160ae3599f6ca880a731bd255 /actions/apitimelinetag.php
parent57dfad64beae100187dcaf3c205645e89611e115 (diff)
These same params are used in most API actions; moved to base API class
Diffstat (limited to 'actions/apitimelinetag.php')
-rw-r--r--actions/apitimelinetag.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php
index 8211b0122..53e79e4b9 100644
--- a/actions/apitimelinetag.php
+++ b/actions/apitimelinetag.php
@@ -61,10 +61,7 @@ class ApiTimelineTagAction extends ApiAction
{
parent::prepare($args);
- $this->page = (int)$this->arg('page', 1);
- $this->count = (int)$this->arg('count', 20);
- $this->tag = $this->arg('tag');
-
+ $this->tag = $this->arg('tag');
$this->notices = $this->getNotices();
return true;