|
From: FlorinCB <ory...@us...> - 2008-09-17 01:25:00
|
Update of /cvsroot/mxbb/core/install/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14943/includes Modified Files: functions_install.php Log Message: mysql 6.x schema added Index: functions_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/includes/functions_install.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** functions_install.php 17 Sep 2008 07:56:44 -0000 1.18 --- functions_install.php 17 Sep 2008 08:24:23 -0000 1.19 *************** *** 85,88 **** --- 85,98 ---- // '2.0.x' => false, // ), + 'mysql6' => array( + 'LABEL' => 'MySQL 6.x', + 'SCHEMA' => 'mysql_61', + 'MODULE' => 'mysqli', + 'DELIM' => ';', + 'COMMENTS' => 'remove_remarks', + 'DRIVER' => 'mysqli', + 'AVAILABLE' => true, + '2.0.x' => true, + ), 'mysqli' => array( 'LABEL' => 'MySQL with MySQLi Extension', *************** *** 114,118 **** 'AVAILABLE' => true, '2.0.x' => true, ! ), // 'mssql' => array( // 'LABEL' => 'MS SQL Server 2000+', --- 124,128 ---- 'AVAILABLE' => true, '2.0.x' => true, ! ), // 'mssql' => array( // 'LABEL' => 'MS SQL Server 2000+', |