diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-08-17 11:14:00 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-08-17 11:14:00 +0200 |
commit | d4652c1b20a5537f7e155b51a575f8fc47368133 (patch) | |
tree | bca5564098671447a030641f09d361aaf337532a /phpBB/phpbb | |
parent | 7dd822942ad80c930f9817a9a4993f247c468e31 (diff) | |
parent | e59af343b898950ac004a949b6391d3724f0a551 (diff) | |
download | forums-d4652c1b20a5537f7e155b51a575f8fc47368133.tar forums-d4652c1b20a5537f7e155b51a575f8fc47368133.tar.gz forums-d4652c1b20a5537f7e155b51a575f8fc47368133.tar.bz2 forums-d4652c1b20a5537f7e155b51a575f8fc47368133.tar.xz forums-d4652c1b20a5537f7e155b51a575f8fc47368133.zip |
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/oauth.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php index 1a3083d42e..0d94acfbca 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -634,6 +634,21 @@ class oauth extends \phpbb\auth\provider\base */ protected function link_account_perform_link(array $data) { + // Check if the external account is already associated with other user + $sql = 'SELECT user_id + FROM ' . $this->auth_provider_oauth_token_account_assoc . " + WHERE provider = '" . $this->db->sql_escape($data['provider']) . "' + AND oauth_provider_id = '" . $this->db->sql_escape($data['oauth_provider_id']) . "'"; + $result = $this->db->sql_query($sql); + $row = $this->db->sql_fetchrow($result); + $this->db->sql_freeresult($result); + + if ($row) + { + trigger_error('AUTH_PROVIDER_OAUTH_ERROR_ALREADY_LINKED'); + } + + // Link account $sql = 'INSERT INTO ' . $this->auth_provider_oauth_token_account_assoc . ' ' . $this->db->sql_build_array('INSERT', $data); $this->db->sql_query($sql); |