diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index 29eb0d3dc6..f72037ad49 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -193,7 +193,7 @@ function get_tables($db) case 'mysql4': case 'mysqli': $sql = 'SHOW TABLES'; - $field = 'Tables_in_' . $db->dbname; + $field = 'Tables_in_' . strtolower($db->dbname); break; case 'sqlite':