|
From: FlorinCB <ory...@us...> - 2008-09-17 01:24:32
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14943 Modified Files: mx_install.php Log Message: mysql 6.x schema added Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** mx_install.php 17 Sep 2008 07:56:45 -0000 1.110 --- mx_install.php 17 Sep 2008 08:24:24 -0000 1.111 *************** *** 351,354 **** --- 351,362 ---- 'COMMENTS' => 'mx_remove_remarks' ), + //This is when the user installed phpBB3 with mysql 6.x if not he can use mysqli + 'mysql6' => array( + 'LABEL' => 'MySQL 6.x', + 'SCHEMA' => 'mysql_61', + 'DELIM' => ';', + 'DELIM_BASIC' => ';', + 'COMMENTS' => 'mx_remove_remarks' + ), 'postgres' => array( 'LABEL' => 'PostgreSQL 7.x', *************** *** 594,603 **** case 'phpbb2': ! //$tplEx = 'tpl'; break; case 'phpbb3': ! //$tplEx = 'html'; break; } --- 602,611 ---- case 'phpbb2': ! $tplEx = $tplEx ? $tplEx : 'tpl'; break; case 'phpbb3': ! $tplEx = $tplEx ? $tplEx : 'html'; break; } |