diff options
author | Zach Copley <zach@status.net> | 2010-02-05 03:19:12 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-02-05 03:19:12 +0000 |
commit | 23802e58d6d01e5f8dacade2161147d31b2dacb9 (patch) | |
tree | 707120cc8d2d0217e4168473b7a7ef25e94919e0 /classes/Oauth_application.php | |
parent | 4502bea9a86fe5992eb9b359d90f0c1f004998c1 (diff) | |
parent | 857494c9c61d872b7decf69de226bba6cd250d99 (diff) |
Merge branch 'temp'
Diffstat (limited to 'classes/Oauth_application.php')
-rw-r--r-- | classes/Oauth_application.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/classes/Oauth_application.php b/classes/Oauth_application.php index a6b539087..748b64220 100644 --- a/classes/Oauth_application.php +++ b/classes/Oauth_application.php @@ -137,4 +137,21 @@ class Oauth_application extends Memcached_DataObject } } + function delete() + { + $this->_deleteAppUsers(); + + $consumer = $this->getConsumer(); + $consumer->delete(); + + parent::delete(); + } + + function _deleteAppUsers() + { + $oauser = new Oauth_application_user(); + $oauser->application_id = $this->id; + $oauser->delete(); + } + } |