aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-04-10 15:44:47 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-04-10 15:44:47 +0200
commit2284e2897f2573467a20cb90579e7b4bb8af392c (patch)
treed57ee4d34bf41ab5fa19a27165504dcc7419e827 /phpBB/install
parent0e2079da8542658c7183473d4984bdc030183f58 (diff)
parent7d54fbd31ac37140a6f7c9644bbc20fad151b6ed (diff)
downloadforums-2284e2897f2573467a20cb90579e7b4bb8af392c.tar
forums-2284e2897f2573467a20cb90579e7b4bb8af392c.tar.gz
forums-2284e2897f2573467a20cb90579e7b4bb8af392c.tar.bz2
forums-2284e2897f2573467a20cb90579e7b4bb8af392c.tar.xz
forums-2284e2897f2573467a20cb90579e7b4bb8af392c.zip
Merge branch 'develop-olympus' into develop-ascraeus
* develop-olympus: [ticket/12381] Fix broken error message when selecting invalid DB driver
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/install_convert.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php
index a837e9d52a..82311bd04d 100644
--- a/phpBB/install/install_convert.php
+++ b/phpBB/install/install_convert.php
@@ -443,7 +443,7 @@ class install_convert extends module
if (!isset($available_dbms[$src_dbms]) || !$available_dbms[$src_dbms]['AVAILABLE'])
{
- $error['db'][] = $lang['INST_ERR_NO_DB'];
+ $error[] = $lang['INST_ERR_NO_DB'];
$connect_test = false;
}
else