diff options
author | Zach Copley <zach@status.net> | 2009-10-09 17:11:40 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-09 17:11:40 -0700 |
commit | 559918826a714c1ee2ecdc49dcfc2b67451a9864 (patch) | |
tree | e65d7dd47e0e0a4d19e0774e09efa2f7818e2419 /actions/apitimelinefriends.php | |
parent | 931e19073d522a41a54b5e9a77b213a10da95476 (diff) |
Remove more redundant $formats
Diffstat (limited to 'actions/apitimelinefriends.php')
-rw-r--r-- | actions/apitimelinefriends.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 92a885293..02e352569 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -53,7 +53,6 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction var $max_id = null; var $since_id = null; var $since = null; - var $format = null; /** * Take arguments for running @@ -73,7 +72,6 @@ class ApiTimelineFriendsAction 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'); $this->user = $this->getTargetUser($this->arg('id')); |