diff options
author | Zach Copley <zach@status.net> | 2009-10-09 14:42:01 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-09 14:42:01 -0700 |
commit | f746993c2bfb674d397cf095a2ab2ff7e757818b (patch) | |
tree | 4b2296aff22c5f5edf4cb834c2ad6566b6696097 /actions/apifavoritecreate.php | |
parent | bb08611def2309711f91c1ab6cdab92fb7c069b2 (diff) |
$format is used by every API action. Set it in the base class.
Diffstat (limited to 'actions/apifavoritecreate.php')
-rw-r--r-- | actions/apifavoritecreate.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actions/apifavoritecreate.php b/actions/apifavoritecreate.php index e45603c6a..6ee6960ba 100644 --- a/actions/apifavoritecreate.php +++ b/actions/apifavoritecreate.php @@ -46,8 +46,6 @@ require_once INSTALLDIR.'/lib/apiauth.php'; class ApiFavoriteCreateAction extends ApiAuthAction { - - var $format = null; var $user = null; var $notice = null; @@ -70,7 +68,6 @@ class ApiFavoriteCreateAction extends ApiAuthAction } } - $this->format = $this->arg('format'); $this->user = $this->auth_user; $this->notice = Notice::staticGet($this->arg('id')); |