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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user