diff options
author | Zach Copley <zach@status.net> | 2009-10-09 17:32:53 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-09 17:32:53 -0700 |
commit | b08d16ef2bf5995ca2feee2d2688e0080eaf5124 (patch) | |
tree | ec4f7e232f8508c160ae3599f6ca880a731bd255 /actions/apigroupmembership.php | |
parent | 57dfad64beae100187dcaf3c205645e89611e115 (diff) |
These same params are used in most API actions; moved to base API class
Diffstat (limited to 'actions/apigroupmembership.php')
-rw-r--r-- | actions/apigroupmembership.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index 0e9510d71..0bc846d60 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -45,11 +45,6 @@ require_once INSTALLDIR . '/lib/api.php'; class ApiGroupMembershipAction extends ApiAction { - var $page = null; - var $count = null; - var $max_id = null; - var $since_id = null; - var $since = null; var $group = null; var $profiles = null; @@ -66,14 +61,7 @@ class ApiGroupMembershipAction extends ApiAction { parent::prepare($args); - $this->page = (int)$this->arg('page', 1); - $this->count = (int)$this->arg('count', 20); - $this->max_id = (int)$this->arg('max_id', 0); - $this->since_id = (int)$this->arg('since_id', 0); - $this->since = $this->arg('since'); - - $this->group = $this->getTargetGroup($this->arg('id')); - + $this->group = $this->getTargetGroup($this->arg('id')); $this->profiles = $this->getProfiles(); return true; |