Skip to content

Commit

Permalink
Merge pull request phpbb#5350 from Elsensee/ticket/15767
Browse files Browse the repository at this point in the history
[ticket/15767] Fix effictively_installed condition for oauth_tokens
  • Loading branch information
Nicofuma committed Sep 15, 2018
2 parents bb20a88 + 9090ddc commit 88f897b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class auth_provider_oauth extends \phpbb\db\migration\migration
{
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()
Expand Down

0 comments on commit 88f897b

Please sign in to comment.