diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 22:20:26 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 22:20:38 -0400 |
commit | dc050e7ece74979b093d5249e4283e3959172b43 (patch) | |
tree | e3f9d6c83c423087783fa4d67a2ea71008fe482b /phpBB/phpbb/auth/provider/oauth | |
parent | b1c62793c61715b6f5cbfb96b9b02c1bafd76cf7 (diff) | |
download | forums-dc050e7ece74979b093d5249e4283e3959172b43.tar forums-dc050e7ece74979b093d5249e4283e3959172b43.tar.gz forums-dc050e7ece74979b093d5249e4283e3959172b43.tar.bz2 forums-dc050e7ece74979b093d5249e4283e3959172b43.tar.xz forums-dc050e7ece74979b093d5249e4283e3959172b43.zip |
[feature/oauth] Fix OAuth after schema changes
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth')
-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 c6f7dc223e..2a5e70939c 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -160,7 +160,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base // Check to see if this provider is already assosciated with an account $data = array( - 'oauth_provider' => $service_name, + 'provider' => $service_name, 'oauth_provider_id' => $unique_id ); $sql = 'SELECT user_id FROM' . $this->auth_provider_oauth_token_account_assoc . ' |