mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
[ticket/15767] Fix effictively_installed condition for oauth_tokens
PHPBB3-15767
This commit is contained in:
parent
bd90a53589
commit
9090ddcfb6
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ class auth_provider_oauth extends \phpbb\db\migration\migration
|
||||||
{
|
{
|
||||||
public function effectively_installed()
|
public function effectively_installed()
|
||||||
{
|
{
|
||||||
return $this->db_tools->sql_table_exists($this->table_prefix . 'auth_provider_oauth');
|
return $this->db_tools->sql_table_exists($this->table_prefix . 'oauth_tokens');
|
||||||
}
|
}
|
||||||
|
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
|
|
Loading…
Add table
Reference in a new issue