aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@gmail.com>2018-09-15 17:05:09 +0200
committerTristan Darricau <tristan.darricau@gmail.com>2018-09-15 17:05:09 +0200
commit88f897bc86e833174a4f6065939badb31ab324d0 (patch)
tree3458cfe28c6fbfd9aff34c0dab59218271efe88e /phpBB/phpbb/db/migration
parentbb20a88748d63502e47de4a3a8fb4b2e6653ac92 (diff)
parent9090ddcfb6dc4c50a2e7b0cc6a7d387a3fa17143 (diff)
downloadforums-88f897bc86e833174a4f6065939badb31ab324d0.tar
forums-88f897bc86e833174a4f6065939badb31ab324d0.tar.gz
forums-88f897bc86e833174a4f6065939badb31ab324d0.tar.bz2
forums-88f897bc86e833174a4f6065939badb31ab324d0.tar.xz
forums-88f897bc86e833174a4f6065939badb31ab324d0.zip
Merge pull request #5350 from Elsensee/ticket/15767
[ticket/15767] Fix effictively_installed condition for oauth_tokens
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/auth_provider_oauth.php2
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()