aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/oauth.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-09-02 15:55:23 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-09-02 16:04:46 -0400
commit6420fdcc053aa1bfa0e612586a1d4f18a5172e74 (patch)
tree99f053346b584138f2372a7098e7379f923b5ef9 /phpBB/phpbb/auth/provider/oauth/oauth.php
parent4348fd83501a56338c1584d96da91b1d6945b93b (diff)
downloadforums-6420fdcc053aa1bfa0e612586a1d4f18a5172e74.tar
forums-6420fdcc053aa1bfa0e612586a1d4f18a5172e74.tar.gz
forums-6420fdcc053aa1bfa0e612586a1d4f18a5172e74.tar.bz2
forums-6420fdcc053aa1bfa0e612586a1d4f18a5172e74.tar.xz
forums-6420fdcc053aa1bfa0e612586a1d4f18a5172e74.zip
[feature/oauth] Fix typo in OAuth logout method
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 5df7db726b..a0bc3038cb 100644
--- a/phpBB/phpbb/auth/provider/oauth/oauth.php
+++ b/phpBB/phpbb/auth/provider/oauth/oauth.php
@@ -531,7 +531,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
{
// Clear all tokens belonging to the user
$storage = new phpbb_auth_provider_oauth_token_storage($this->db, $this->user, $this->auth_provider_oauth_token_storage_table);
- $stroage->clearAllTokens();
+ $storage->clearAllTokens();
return;
}