diff options
author | Zach Copley <zach@status.net> | 2010-10-21 16:42:59 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-10-21 16:42:59 -0700 |
commit | 94f7bfa50ae3a2f3443addc3825d99e584cb7d68 (patch) | |
tree | 0523009b5dbfd57050e0543abd8a7c9318076113 /actions | |
parent | 4ab110e0715066a249accecf6488a8504280bc96 (diff) |
Don't show 'anonymous' app in OAuth application list.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/oauthappssettings.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/oauthappssettings.php b/actions/oauthappssettings.php index 6c0670b17..e75f014ab 100644 --- a/actions/oauthappssettings.php +++ b/actions/oauthappssettings.php @@ -100,6 +100,7 @@ class OauthappssettingsAction extends SettingsAction $application = new Oauth_application(); $application->owner = $user->id; + $application->whereAdd("name != 'anonymous'"); $application->limit($offset, $limit); $application->orderBy('created DESC'); $application->find(); |