diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-12-31 00:53:50 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-12-31 00:53:50 +0100 |
commit | cbe91e5b5096dc1ed659530632f0fa64d75e8dd9 (patch) | |
tree | a0aa973639a57ea3c1b1cd23ff843cc0bac0103e /phpBB/includes/functions_install.php | |
parent | 51138d3f3a323b92bf07096ef98b5101f9593674 (diff) | |
parent | 989c4c3e6408e0d53b042161cfb34a0befe2570c (diff) | |
download | forums-cbe91e5b5096dc1ed659530632f0fa64d75e8dd9.tar forums-cbe91e5b5096dc1ed659530632f0fa64d75e8dd9.tar.gz forums-cbe91e5b5096dc1ed659530632f0fa64d75e8dd9.tar.bz2 forums-cbe91e5b5096dc1ed659530632f0fa64d75e8dd9.tar.xz forums-cbe91e5b5096dc1ed659530632f0fa64d75e8dd9.zip |
Merge remote-tracking branch 'p/ticket/11293' into develop-olympus
* p/ticket/11293:
[ticket/11293] Add a note that mysqli should be in front of mysql.
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r-- | phpBB/includes/functions_install.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index eae136808c..47f4eac627 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -55,6 +55,8 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20 'AVAILABLE' => true, '2.0.x' => false, ), + // Note: php 5.5 alpha 2 deprecated mysql. + // Keep mysqli before mysql in this list. 'mysqli' => array( 'LABEL' => 'MySQL with MySQLi Extension', 'SCHEMA' => 'mysql_41', |