aboutsummaryrefslogtreecommitdiff
path: root/mod/oauth_api/vendors/oauth/library/OAuthServer.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-10-29 16:19:49 -0400
committercash <cash.costello@gmail.com>2011-10-29 16:19:49 -0400
commit3bfeb41a547284d34506c10be3501aeefe73f74c (patch)
treee54e14f328ce77aa5a51bf4c626ede1bf5e2e42f /mod/oauth_api/vendors/oauth/library/OAuthServer.php
parent4106d50727d5a56ec1442b16e182fbd9acc6b167 (diff)
downloadelgg-3bfeb41a547284d34506c10be3501aeefe73f74c.tar.gz
elgg-3bfeb41a547284d34506c10be3501aeefe73f74c.tar.bz2
Refs #4028 reset the oAuth lib to version r64 of oauth-php
Diffstat (limited to 'mod/oauth_api/vendors/oauth/library/OAuthServer.php')
-rw-r--r--mod/oauth_api/vendors/oauth/library/OAuthServer.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/oauth_api/vendors/oauth/library/OAuthServer.php b/mod/oauth_api/vendors/oauth/library/OAuthServer.php
index d86cc5f14..c7f9097b3 100644
--- a/mod/oauth_api/vendors/oauth/library/OAuthServer.php
+++ b/mod/oauth_api/vendors/oauth/library/OAuthServer.php
@@ -58,7 +58,7 @@ class OAuthServer extends OAuthRequestVerifier
}
// Create a request token
- $store = elggconnect_get_oauth_store();//OAuthStore::instance();
+ $store = OAuthStore::instance();
$token = $store->addConsumerRequestToken($this->getParam('oauth_consumer_key', true), $options);
$result = 'oauth_token='.$this->urlencode($token['token'])
.'&oauth_token_secret='.$this->urlencode($token['token_secret']);
@@ -104,7 +104,7 @@ class OAuthServer extends OAuthRequestVerifier
{
OAuthRequestLogger::start($this);
- $store = elggconnect_get_oauth_store();//OAuthStore::instance();
+ $store = OAuthStore::instance();
$token = $this->getParam('oauth_token', true);
$rs = $store->getConsumerRequestToken($token);
if (empty($rs))
@@ -142,7 +142,7 @@ class OAuthServer extends OAuthRequestVerifier
&& $_SESSION['verify_oauth_token'] == $token)
{
// Flag the token as authorized, or remove the token when not authorized
- $store = elggconnect_get_oauth_store();//OAuthStore::instance();
+ $store = OAuthStore::instance();
// Fetch the referrer host from the oauth callback parameter
$referrer_host = '';
@@ -198,7 +198,7 @@ class OAuthServer extends OAuthRequestVerifier
$options['token_ttl'] = $ttl;
}
- $store = elggconnect_get_oauth_store();//OAuthStore::instance();
+ $store = OAuthStore::instance();
$token = $store->exchangeConsumerRequestForAccessToken($this->getParam('oauth_token', true), $options);
$result = 'oauth_token='.$this->urlencode($token['token'])
.'&oauth_token_secret='.$this->urlencode($token['token_secret']);