Update of /cvsroot/phpbb-php5mod/phpbb-php5/install
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11598
Modified Files:
install.php
Log Message:
Hrm... install.php has been updated to work with mysqli now, It has been *somewhat* tested. Note however, that the required mysqli.php file is not yet included in the commit,
so make sure to note use it yet! It's just here so that the other devs can also work on it
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/install/install.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** install.php 30 Jul 2004 02:12:38 -0000 1.2
--- install.php 24 Sep 2004 02:20:12 -0000 1.3
***************
*** 19,23 ****
*
***************************************************************************/
!
// ---------
// FUNCTIONS
--- 19,23 ----
*
***************************************************************************/
! //----------------
// ---------
// FUNCTIONS
***************
*** 322,325 ****
--- 322,333 ----
'DELIM_BASIC' => ';',
'COMMENTS' => 'remove_remarks'
+ ),
+ //this was added for support of MySQLI :) -phpbb2_fan
+ 'mysql4' => array(
+ 'LABEL' => 'MySQL 4.x /w MySQLi',
+ 'SCHEMA' => 'mysql',
+ 'DELIM' => ';',
+ 'DELIM_BASIC' => ';',
+ 'COMMENTS' => 'remove_remarks'
),
'postgres' => array(
***************
*** 769,772 ****
--- 777,782 ----
case 'mysql':
+ //added for MySQLi support -phpbb2_fan
+ case 'mysqli':
case 'mysql4':
$check_exts = 'mysql';
|