From 8dcda2ce5598a6a0c743e6cbb7da2caf7024e49b Mon Sep 17 00:00:00 2001 From: David M Date: Tue, 20 Mar 2007 03:32:20 +0000 Subject: [PATCH] #5136 git-svn-id: file:///svn/phpbb/trunk@7210 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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':