summaryrefslogtreecommitdiff
path: root/classes/Profile.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-01-13 21:11:08 +0000
committerZach Copley <zach@status.net>2010-01-14 02:41:10 +0000
commit38269a6579789cbdaa309fa08e6cbb196879e7cf (patch)
treefc9144d950b81e3f973c4b126342c556512e64fa /classes/Profile.php
parent3aa0d8bea7395b4c67521af4bad5c8936ea194fa (diff)
Revoke access token UI
Diffstat (limited to 'classes/Profile.php')
-rw-r--r--classes/Profile.php3
1 files changed, 2 insertions, 1 deletions
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) {