|
From: Paul S. O. <ps...@us...> - 2001-11-04 15:26:46
|
Update of /cvsroot/phpbb/phpBB2/includes In directory usw-pr-cvs1:/tmp/cvs-serv8562/includes Modified Files: db.php Log Message: MySQL 4.x support, functionaly similar to MySQL bar transaction support Index: db.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/includes/db.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** db.php 2001/08/30 22:20:23 1.6 --- db.php 2001/11/04 15:26:33 1.7 *************** *** 27,30 **** --- 27,34 ---- break; + case 'mysql4': + include($phpbb_root_path . 'db/mysql4.'.$phpEx); + break; + case 'postgres': include($phpbb_root_path . 'db/postgres7.'.$phpEx); |