aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/oauth.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-09-02 15:25:38 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-09-02 16:04:15 -0400
commit6df2bd4fd3e9babc6a79e4f03d6d5a20d79940f8 (patch)
treeddd7ac7f4f03b267bb1fd97927feaa292ee3e124 /phpBB/phpbb/auth/provider/oauth/oauth.php
parentd04def0558581e97b608a505f9e5a21557bc47fa (diff)
downloadforums-6df2bd4fd3e9babc6a79e4f03d6d5a20d79940f8.tar
forums-6df2bd4fd3e9babc6a79e4f03d6d5a20d79940f8.tar.gz
forums-6df2bd4fd3e9babc6a79e4f03d6d5a20d79940f8.tar.bz2
forums-6df2bd4fd3e9babc6a79e4f03d6d5a20d79940f8.tar.xz
forums-6df2bd4fd3e9babc6a79e4f03d6d5a20d79940f8.zip
[feature/oauth] Update storage implementation due to inteface change
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/oauth.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/oauth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php
index c1c27c979f..142c209c0a 100644
--- a/phpBB/phpbb/auth/provider/oauth/oauth.php
+++ b/phpBB/phpbb/auth/provider/oauth/oauth.php
@@ -613,7 +613,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
// Clear all tokens belonging to the user on this servce
$service_name = 'auth.provider.oauth.service.' . strtolower($link_data['oauth_service']);
$storage = new phpbb_auth_provider_oauth_token_storage($this->db, $this->user, $service_name, $this->auth_provider_oauth_token_storage_table);
- $storage->clearToken();
+ $storage->clearToken($service_name);
return;
}