diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-13 18:20:49 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-14 14:22:43 -0400 |
commit | 68a80f8ea8d61a8ad60f046a2ef68124d2abc801 (patch) | |
tree | 8ee124019123971cd503df4b96eef20ef8b88d25 /phpBB | |
parent | 5942eac5dac51e9f70a1f175a480316975fb3ac9 (diff) | |
download | forums-68a80f8ea8d61a8ad60f046a2ef68124d2abc801.tar forums-68a80f8ea8d61a8ad60f046a2ef68124d2abc801.tar.gz forums-68a80f8ea8d61a8ad60f046a2ef68124d2abc801.tar.bz2 forums-68a80f8ea8d61a8ad60f046a2ef68124d2abc801.tar.xz forums-68a80f8ea8d61a8ad60f046a2ef68124d2abc801.zip |
[feature/oauth] Fix typo
PHPBB3-11673
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/auth/oauth/token_storage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/auth/oauth/token_storage.php b/phpBB/includes/auth/oauth/token_storage.php index 90185e5f5a..c3d560cc79 100644 --- a/phpBB/includes/auth/oauth/token_storage.php +++ b/phpBB/includes/auth/oauth/token_storage.php @@ -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, )); |