Update of /cvsroot/phpbb-php5mod/phpbb-php5/install
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32352
Modified Files:
install.php
Log Message:
Found another bug... instead of looking for the mysqli extension, it looked for the mysql extension.
Sorry guys :P
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/install/install.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** install.php 29 Sep 2004 03:09:00 -0000 1.4
--- install.php 17 Oct 2004 18:17:56 -0000 1.5
***************
*** 778,782 ****
--- 778,786 ----
case 'mysql':
//added for MySQLi support -phpbb2_fan
+ //this was a bug, since it didn't look for mysqli extension, rather mysql extension. :(
case 'mysqli':
+ $check_exts = 'mysqli';
+ $check_other = 'mysqli';
+ break;
case 'mysql4':
$check_exts = 'mysql';
|