From f283a283b7101d95f7bed4558b37947f3c5b6951 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 21 Oct 2010 01:17:59 +0000 Subject: [PATCH] Fix syntax error --- lib/apioauthstore.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 6b9b977560..e67b864af6 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( -- 2.39.2