egroupware/phpgwapi/inc/class.db.inc.php

8 lines
224 B
PHP
Raw Normal View History

<?php
2001-09-02 02:27:19 +02:00
if (empty($GLOBALS['phpgw_info']['server']['db_type']))
{
$GLOBALS['phpgw_info']['server']['db_type'] = 'mysql';
}
include(PHPGW_API_INC.'/class.db_'.$GLOBALS['phpgw_info']['server']['db_type'].'.inc.php');
?>