mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/oauth] Fix SQL error in token storage
PHPBB3-11673
This commit is contained in:
parent
fe9c97cfb4
commit
8d568dae71
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class phpbb_auth_provider_oauth_token_storage implements TokenStorageInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'INSERT INTO ' . $this->auth_provider_oauth_table . '
|
$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);
|
$this->db->sql_query($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue