diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 21:22:52 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 21:23:07 -0400 |
commit | 8d568dae7116ac05eda593835d99e6e6f22dc9f7 (patch) | |
tree | 7e5f95380f20a40fbde6047356b7c9a97537ccdf /phpBB/phpbb/auth/provider/oauth/token_storage.php | |
parent | fe9c97cfb45be2943eebb8ed5cbab51150e828ee (diff) | |
download | forums-8d568dae7116ac05eda593835d99e6e6f22dc9f7.tar forums-8d568dae7116ac05eda593835d99e6e6f22dc9f7.tar.gz forums-8d568dae7116ac05eda593835d99e6e6f22dc9f7.tar.bz2 forums-8d568dae7116ac05eda593835d99e6e6f22dc9f7.tar.xz forums-8d568dae7116ac05eda593835d99e6e6f22dc9f7.zip |
[feature/oauth] Fix SQL error in token storage
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/token_storage.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/token_storage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/token_storage.php b/phpBB/phpbb/auth/provider/oauth/token_storage.php index 227b51efc9..385fa58f25 100644 --- a/phpBB/phpbb/auth/provider/oauth/token_storage.php +++ b/phpBB/phpbb/auth/provider/oauth/token_storage.php @@ -141,7 +141,7 @@ class phpbb_auth_provider_oauth_token_storage implements TokenStorageInterface } $sql = 'INSERT INTO ' . $this->auth_provider_oauth_table . ' - WHERE ' . $this->db->sql_build_array('INSERT', $data); + ' . $this->db->sql_build_array('INSERT', $data); $this->db->sql_query($sql); } |