mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:11:47 +02:00
[feature/oauth] Fix typo
PHPBB3-11673
This commit is contained in:
@@ -87,7 +87,7 @@ class phpbb_auth_oauth_token_storage implements TokenStorageInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'SELECT oauth_token FROM ' . $this->auth_provider_oauth_table .
|
$sql = 'SELECT oauth_token FROM ' . $this->auth_provider_oauth_table .
|
||||||
$db->sql_build_array('SELECT', array(
|
$this->db->sql_build_array('SELECT', array(
|
||||||
'user_id' => $this->user->data['user_id'],
|
'user_id' => $this->user->data['user_id'],
|
||||||
'oauth_provider' => $this->service_name,
|
'oauth_provider' => $this->service_name,
|
||||||
));
|
));
|
||||||
@@ -139,7 +139,7 @@ class phpbb_auth_oauth_token_storage implements TokenStorageInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'SELECT oauth_token FROM ' . $this->auth_provider_oauth_table .
|
$sql = 'SELECT oauth_token FROM ' . $this->auth_provider_oauth_table .
|
||||||
$db->sql_build_array('SELECT', array(
|
$this->db->sql_build_array('SELECT', array(
|
||||||
'user_id' => $this->user->data['user_id'],
|
'user_id' => $this->user->data['user_id'],
|
||||||
'oauth_provider' => $this->service_name,
|
'oauth_provider' => $this->service_name,
|
||||||
));
|
));
|
||||||
|
Reference in New Issue
Block a user