]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Declare some more variables; instance variable for format
authorZach Copley <zach@status.net>
Thu, 1 Oct 2009 00:02:04 +0000 (17:02 -0700)
committerZach Copley <zach@status.net>
Thu, 1 Oct 2009 00:02:04 +0000 (17:02 -0700)
actions/apifriendstimeline.php

index 1e88d1c2b41de692ce2e6dfde3d161b2c1b2deb6..be0cf758c299a31726ba13d3ae7ffa02237c30bd 100644 (file)
@@ -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;