aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_install.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r--phpBB/includes/functions_install.php2
1 files changed, 1 insertions, 1 deletions
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':