diff options
author | Zach Copley <zach@status.net> | 2009-09-30 17:02:04 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-09-30 17:02:04 -0700 |
commit | 524c2794c954346a00d7bf4cd58a6742bc005707 (patch) | |
tree | a5f04151bb589d741bec1c17fe31bd5c3bb66dd6 | |
parent | 5bab0288afe90996729101df1372071e1bf2cffc (diff) |
Declare some more variables; instance variable for format
-rw-r--r-- | actions/apifriendstimeline.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/actions/apifriendstimeline.php b/actions/apifriendstimeline.php index 1e88d1c2b..be0cf758c 100644 --- a/actions/apifriendstimeline.php +++ b/actions/apifriendstimeline.php @@ -47,8 +47,13 @@ require_once INSTALLDIR.'/lib/apibareauth.php'; class ApiFriendsTimelineAction extends ApiBareAuthAction { - var $user = null; - var $notices = null; + var $user = null; + var $notices = null; + var $count = null; + var $max_id = null; + var $since_id = null; + var $since = null; + var $format = null; /** * Take arguments for running @@ -68,6 +73,7 @@ class ApiFriendsTimelineAction extends ApiBareAuthAction $this->max_id = (int)$this->arg('max_id', 0); $this->since_id = (int)$this->arg('since_id', 0); $this->since = $this->arg('since'); + $this->format = $this->arg('format'); if ($this->requiresAuth()) { if ($this->checkBasicAuthUser() == false) { @@ -78,7 +84,7 @@ class ApiFriendsTimelineAction extends ApiBareAuthAction $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->arg('format')); + $this->clientError(_('No such user!'), 404, $this->format); return; } @@ -124,7 +130,7 @@ class ApiFriendsTimelineAction extends ApiBareAuthAction $this->user->nickname, $sitename ); - switch($this->arg('format')) { + switch($this->format) { case 'xml': $this->show_xml_timeline($this->notices); break; |