summaryrefslogtreecommitdiff
path: root/actions/apifavoritedestroy.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-09 14:42:01 -0700
committerZach Copley <zach@status.net>2009-10-09 14:42:01 -0700
commitf746993c2bfb674d397cf095a2ab2ff7e757818b (patch)
tree4b2296aff22c5f5edf4cb834c2ad6566b6696097 /actions/apifavoritedestroy.php
parentbb08611def2309711f91c1ab6cdab92fb7c069b2 (diff)
$format is used by every API action. Set it in the base class.
Diffstat (limited to 'actions/apifavoritedestroy.php')
-rw-r--r--actions/apifavoritedestroy.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/actions/apifavoritedestroy.php b/actions/apifavoritedestroy.php
index a70d5c79b..36946fbfb 100644
--- a/actions/apifavoritedestroy.php
+++ b/actions/apifavoritedestroy.php
@@ -47,9 +47,9 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiFavoriteDestroyAction extends ApiAuthAction
{
- var $format = null;
var $user = null;
var $notice = null;
+
/**
* Take arguments for running
*
@@ -69,7 +69,6 @@ class ApiFavoriteDestroyAction extends ApiAuthAction
}
}
- $this->format = $this->arg('format');
$this->user = $this->auth_user;
$this->notice = Notice::staticGet($this->arg('id'));