diff options
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) { |