aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-12-25 00:11:34 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-12-25 00:11:34 -0500
commit989c4c3e6408e0d53b042161cfb34a0befe2570c (patch)
tree719b061716822d51d0b54975524218f6f3b45a8e /phpBB
parentc701de695f33d78e99517b9213eb06a95e57f9a0 (diff)
downloadforums-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')
-rw-r--r--phpBB/includes/functions_install.php2
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',