[Phpbb-php5mod-cvs-checkins] phpbb-php5/includes db.php,1.1,1.2
Brought to you by:
jelly_doughnut
From: Christian H. <fli...@us...> - 2004-09-24 02:28:12
|
Update of /cvsroot/phpbb-php5mod/phpbb-php5/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12593 Modified Files: db.php Log Message: Well, Here we go, db.php has also been updated! This should be all that is needed for it to work with php5... enjoy :) NOTE: I didn't test this one :-P Index: db.php =================================================================== RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/includes/db.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** db.php 29 Jul 2004 22:36:19 -0000 1.1 --- db.php 24 Sep 2004 02:28:03 -0000 1.2 *************** *** 35,38 **** --- 35,43 ---- include($phpbb_root_path . 'db/mysql4.'.$phpEx); break; + + //for MySQLi support --phpbb2_fan + case 'mysqli': + include($phpbb_root_path . 'db/mysqli.'.$phpEx); + break; case 'postgres': *************** *** 64,66 **** } ! ?> \ No newline at end of file --- 69,71 ---- } ! ?> |