diff options
author | Zach Copley <zach@status.net> | 2010-10-21 01:17:59 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-10-21 01:17:59 +0000 |
commit | f283a283b7101d95f7bed4558b37947f3c5b6951 (patch) | |
tree | 2ad119bb00bc0eb886a4a2e8ec9a955eb4304f13 /lib | |
parent | bfdb8385ecc745002b8c45510caf2fdf7c2d2c9f (diff) |
Fix syntax error
Diffstat (limited to 'lib')
-rw-r--r-- | lib/apioauthstore.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 6b9b97756..e67b864af 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -144,8 +144,7 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore common_debug('Request token found.', __FILE__); // find the app and profile associated with this token - - $tokenAssoc = OAuth_token_association::staticGet('token', $rt->tok); + $tokenAssoc = Oauth_token_association::staticGet('token', $rt->tok); if (!$tokenAssoc) { throw new Exception( |