1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 17:40:43 +01:00

[ticket/16284] Use tables array in acp_storage_module

PHPBB3-16284
This commit is contained in:
Marc Alexander 2020-01-01 12:09:07 +01:00
parent a72810465f
commit 73b045fb44
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -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);