diff options
author | Zach Copley <zach@status.net> | 2010-01-13 21:11:08 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-24 16:36:05 -0800 |
commit | 9e7f47652d860d7f1e296dd369c4e68814bf2636 (patch) | |
tree | f5a86c814d361dec9915d7940452e440a035a6d7 /classes | |
parent | dbcbc2fe7ff0368910a49ed5675b0edc1e2bf18d (diff) |
Revoke access token UI
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Oauth_application_user.php | 2 | ||||
-rw-r--r-- | classes/Profile.php | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/classes/Oauth_application_user.php b/classes/Oauth_application_user.php index a05371f56..618d68133 100644 --- a/classes/Oauth_application_user.php +++ b/classes/Oauth_application_user.php @@ -34,7 +34,7 @@ class Oauth_application_user extends Memcached_DataObject $oau = new Oauth_application_user(); $oau->profile_id = $user->id; - $oau->application_id = $app->id; + $oau->application_id = $app->id; $oau->limit(1); $result = $oau->find(true); diff --git a/classes/Profile.php b/classes/Profile.php index fef2a2171..1076fb2cb 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -358,7 +358,8 @@ class Profile extends Memcached_DataObject 'SELECT a.* ' . 'FROM oauth_application_user u, oauth_application a ' . 'WHERE u.profile_id = %d ' . - 'AND a.id = u.application_id ' . + 'AND a.id = u.application_id ' . + 'AND u.access_type > 0 ' . 'ORDER BY u.created DESC '; if ($offset > 0) { |