diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-29 16:07:11 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-29 16:07:26 -0400 |
commit | d21ab4f629342d9f1bb46f489f166c9016ebe72b (patch) | |
tree | 9953a9c07476fe7cf7f4045ca683891cb7980272 /phpBB/phpbb/auth/provider/oauth/oauth.php | |
parent | 3d55e5faa91f0161bc020720a81b50171b30f49d (diff) | |
download | forums-d21ab4f629342d9f1bb46f489f166c9016ebe72b.tar forums-d21ab4f629342d9f1bb46f489f166c9016ebe72b.tar.gz forums-d21ab4f629342d9f1bb46f489f166c9016ebe72b.tar.bz2 forums-d21ab4f629342d9f1bb46f489f166c9016ebe72b.tar.xz forums-d21ab4f629342d9f1bb46f489f166c9016ebe72b.zip |
[feature/oauth] Update the OAuth service interface
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/oauth.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/oauth.php | 2 |
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 6526667794..4266a8de0d 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -398,7 +398,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base $this->service_providers[$service_name]->set_external_service_provider($service); // The user has already authenticated successfully, request to authenticate again - $unique_id = $this->service_providers[$service_name]->perform_auth_link(); + $unique_id = $this->service_providers[$service_name]->perform_token_auth(); // Insert into table, they will be able to log in after this $data = array( |