diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-01-02 19:50:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-01-02 19:50:07 +0000 |
commit | 16d41b20d8df566a6648c9fc7384058de54305d8 (patch) | |
tree | 83135a436330ad354e17f25fd74132a3914a1808 /phpBB/install/install.php | |
parent | cf1d36aa775faa3a1760eae0e5a9740abdbebb5d (diff) | |
download | forums-16d41b20d8df566a6648c9fc7384058de54305d8.tar forums-16d41b20d8df566a6648c9fc7384058de54305d8.tar.gz forums-16d41b20d8df566a6648c9fc7384058de54305d8.tar.bz2 forums-16d41b20d8df566a6648c9fc7384058de54305d8.tar.xz forums-16d41b20d8df566a6648c9fc7384058de54305d8.zip |
- mysql 4.1.x support (mysqli extension)
git-svn-id: file:///svn/phpbb/trunk@5042 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r-- | phpBB/install/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index cd73473ea6..7e0af23e9a 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -785,7 +785,7 @@ if ($stage == 2) // we need to load and whether we can load them. This includes // modules in addition to that required by the DB layer $load_extensions = array(); - $check_exts = array_merge($available_dbms[$dbms]['MODULE'], $php_dlls_other); + $check_exts = array_merge(array($available_dbms[$dbms]['MODULE']), $php_dlls_other); foreach ($check_exts as $dll) { |