diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2018-09-13 15:18:29 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2018-09-13 15:19:11 +0200 |
commit | 9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143 (patch) | |
tree | fb72783fe10241e6c0601ff27717ff97f0738ed8 | |
parent | bd90a5358969e2bb82df34727ed8f6575781e5d2 (diff) | |
download | forums-9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143.tar forums-9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143.tar.gz forums-9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143.tar.bz2 forums-9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143.tar.xz forums-9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143.zip |
[ticket/15767] Fix effictively_installed condition for oauth_tokens
PHPBB3-15767
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php b/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php index d41041af49..1e2024a071 100644 --- a/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php +++ b/phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php @@ -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() |