1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Changes to include location + some other misc stuff

git-svn-id: file:///svn/phpbb/trunk@646 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-07-13 16:14:37 +00:00
parent 79d57c449f
commit ea98341099
21 changed files with 350 additions and 309 deletions

View File

@@ -24,19 +24,23 @@
switch($dbms)
{
case 'mysql':
include('db/mysql.'.$phpEx);
include($phpbb_root_path . 'db/mysql.'.$phpEx);
break;
case 'postgres':
include('db/postgres7.'.$phpEx);
include($phpbb_root_path . 'db/postgres7.'.$phpEx);
break;
case 'mssql':
include('db/mssql.'.$phpEx);
include($phpbb_root_path . 'db/mssql.'.$phpEx);
break;
case 'odbc':
include('db/odbc.'.$phpEx);
include($phpbb_root_path . 'db/odbc.'.$phpEx);
break;
case 'oracle':
include('db/oracle.'.$phpEx);
include($phpbb_root_path . 'db/oracle.'.$phpEx);
break;
}