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/apistatusesshow.php | |
parent | 931e19073d522a41a54b5e9a77b213a10da95476 (diff) |
Remove more redundant $formats
Diffstat (limited to 'actions/apistatusesshow.php')
-rw-r--r-- | actions/apistatusesshow.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index 9e28fe2ab..0096cfe6b 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -48,7 +48,6 @@ class ApiStatusesShowAction extends ApiAction var $notice_id = null; var $notice = null; - var $format = null; /** * Take arguments for running @@ -74,7 +73,6 @@ class ApiStatusesShowAction extends ApiAction $this->notice_id = (int)$this->arg('id'); } - $this->format = $this->arg('format'); $this->notice = Notice::staticGet((int)$this->notice_id); return true; |