mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/oauth] Fix typo
PHPBB3-11673
This commit is contained in:
parent
5942eac5da
commit
68a80f8ea8
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ class phpbb_auth_oauth_token_storage implements TokenStorageInterface
|
|||
}
|
||||
|
||||
$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'],
|
||||
'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 .
|
||||
$db->sql_build_array('SELECT', array(
|
||||
$this->db->sql_build_array('SELECT', array(
|
||||
'user_id' => $this->user->data['user_id'],
|
||||
'oauth_provider' => $this->service_name,
|
||||
));
|
||||
|
|
Loading…
Add table
Reference in a new issue