diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-25 00:11:34 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-25 00:11:34 -0500 |
commit | 989c4c3e6408e0d53b042161cfb34a0befe2570c (patch) | |
tree | 719b061716822d51d0b54975524218f6f3b45a8e /phpBB/includes/functions_install.php | |
parent | c701de695f33d78e99517b9213eb06a95e57f9a0 (diff) | |
download | forums-989c4c3e6408e0d53b042161cfb34a0befe2570c.tar forums-989c4c3e6408e0d53b042161cfb34a0befe2570c.tar.gz forums-989c4c3e6408e0d53b042161cfb34a0befe2570c.tar.bz2 forums-989c4c3e6408e0d53b042161cfb34a0befe2570c.tar.xz forums-989c4c3e6408e0d53b042161cfb34a0befe2570c.zip |
[ticket/11293] Add a note that mysqli should be in front of mysql.
php 5.5 alpha 2 deprecated mysql extension, prefer mysqli if
both are available.
PHPBB3-11293
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', |