forked from extern/egroupware
makeing ADOdb the configuration default: unless you explicitly set
$GLOBALS['phpgw_info']['server']['use_adodb'] = False; in your header.inc.php, eGW uses ADOdb
This commit is contained in:
parent
3df33d3ef6
commit
2238ea9dbb
@ -13,7 +13,7 @@
|
||||
/*
|
||||
* Database abstraction library
|
||||
*
|
||||
* This allows eGroupWare to use multiple database backends via ADOdb
|
||||
* This allows eGroupWare to use multiple database backends via ADOdb 4.20
|
||||
*
|
||||
* @package phpgwapi
|
||||
* @subpackage db
|
||||
@ -25,7 +25,7 @@
|
||||
{
|
||||
$GLOBALS['phpgw_info']['server']['db_type'] = 'mysql';
|
||||
}
|
||||
if (@$GLOBALS['phpgw_info']['server']['use_adodb'])
|
||||
if (!isset($GLOBALS['phpgw_info']['server']['use_adodb']) || $GLOBALS['phpgw_info']['server']['use_adodb'])
|
||||
{
|
||||
include_once('adodb/adodb.inc.php');
|
||||
}
|
||||
@ -864,7 +864,7 @@
|
||||
}
|
||||
|
||||
// REMOVE-IF-ONLY-ADODB
|
||||
if (!@$GLOBALS['phpgw_info']['server']['use_adodb'])
|
||||
if (isset($GLOBALS['phpgw_info']['server']['use_adodb']) && !$GLOBALS['phpgw_info']['server']['use_adodb'])
|
||||
{
|
||||
include(PHPGW_API_INC.'/class.db_'.$GLOBALS['phpgw_info']['server']['db_type'].'.inc.php');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user