1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/oauth] Update storage implementation due to inteface change

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-09-02 15:25:38 -04:00
parent d04def0558
commit 6df2bd4fd3
2 changed files with 21 additions and 3 deletions

View File

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