1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-02 12:34:59 +02:00

[feature/oauth] Fix typo

PHPBB3-11673
This commit is contained in:
Joseph Warner 2013-07-13 18:20:49 -04:00
parent 5942eac5da
commit 68a80f8ea8

View File

@ -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,
));