1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 20:19:13 +02:00

[feature/oauth] Fix typo in OAuth logout method

PHPBB3-11673
This commit is contained in:
Joseph Warner 2013-09-02 15:55:23 -04:00
parent 4348fd8350
commit 6420fdcc05

View File

@ -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;
}