diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-23 12:13:19 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-01-23 12:13:19 +0000 |
commit | c5b70d5f605202c409015597dc02c0ad07ac4122 (patch) | |
tree | 8713bf4c4e2c58ebb86c6f52544c98b94b6e8223 | |
parent | f0092cd1f2ae97a655434cae6b8c69b202314720 (diff) | |
download | forums-c5b70d5f605202c409015597dc02c0ad07ac4122.tar forums-c5b70d5f605202c409015597dc02c0ad07ac4122.tar.gz forums-c5b70d5f605202c409015597dc02c0ad07ac4122.tar.bz2 forums-c5b70d5f605202c409015597dc02c0ad07ac4122.tar.xz forums-c5b70d5f605202c409015597dc02c0ad07ac4122.zip |
tiny fix for the installer
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9300 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/install_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 8591446fea..55d1344008 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -543,7 +543,7 @@ class install_install extends module { if (!isset($available_dbms[$data['dbms']]) || !$available_dbms[$data['dbms']]['AVAILABLE']) { - $error['db'][] = $lang['INST_ERR_NO_DB']; + $error[] = $lang['INST_ERR_NO_DB']; $connect_test = false; } else |