diff options
Diffstat (limited to 'phpBB/phpbb/auth')
| -rw-r--r-- | phpBB/phpbb/auth/provider/oauth/oauth.php | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php index 5587e69d3c..8809a0c6b4 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -227,6 +227,22 @@ class oauth extends \phpbb\auth\provider\base  			$row = $this->db->sql_fetchrow($result);  			$this->db->sql_freeresult($result); +			/** +			* Event is triggered before check if provider is already associated with an account +			* +			* @event core.oauth_login_after_check_if_provider_id_has_match +			* @var	array									row		User row +			* @var	array									data	Provider data +			* @var	\OAuth\Common\Service\ServiceInterface	service	OAuth service +			* @since 3.2.3-RC1 +			*/ +			$vars = array( +				'row', +				'data', +				'service', +			); +			extract($this->dispatcher->trigger_event('core.oauth_login_after_check_if_provider_id_has_match', compact($vars))); +  			if (!$row)  			{  				// The user does not yet exist, ask to link or create profile | 
