aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-01 12:09:07 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-01 12:09:07 +0100
commit73b045fb443daefa68a9d4758e19abca65847888 (patch)
tree5bfd388b2e090cf329e98bf70767a8013b9e45c1 /phpBB/phpbb
parent[ticket/16284] Provide tables as array in migrations (diff)
downloadphpbb-73b045fb443daefa68a9d4758e19abca65847888.tar.gz
phpbb-73b045fb443daefa68a9d4758e19abca65847888.tar.bz2
phpbb-73b045fb443daefa68a9d4758e19abca65847888.zip
[ticket/16284] Use tables array in acp_storage_module
PHPBB3-16284
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v400/acp_storage_module.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v400/acp_storage_module.php b/phpBB/phpbb/db/migration/data/v400/acp_storage_module.php
index daa17e2955..7177a6a0ee 100644
--- a/phpBB/phpbb/db/migration/data/v400/acp_storage_module.php
+++ b/phpBB/phpbb/db/migration/data/v400/acp_storage_module.php
@@ -20,7 +20,7 @@ class acp_storage_module extends migration
public function effectively_installed()
{
$sql = 'SELECT module_id
- FROM ' . MODULES_TABLE . "
+ FROM ' . $this->tables['modules'] . "
WHERE module_class = 'acp'
AND module_langname = 'ACP_STORAGE_SETTINGS'";
$result = $this->db->sql_query($sql);