2001-01-25 04:03:45 +01:00
|
|
|
<?php
|
2003-10-24 02:54:28 +02:00
|
|
|
if (!isset($phpgw_info['server']['contact_repository']))
|
2001-05-21 11:12:10 +02:00
|
|
|
{
|
2003-08-28 16:31:11 +02:00
|
|
|
$phpgw_info['server']['contact_repository'] = 'sql';
|
2001-05-21 11:12:10 +02:00
|
|
|
}
|
2003-08-28 16:31:11 +02:00
|
|
|
include(PHPGW_API_INC . '/class.contacts_'.$phpgw_info['server']['contact_repository'] . '.inc.php');
|
|
|
|
include(PHPGW_API_INC . '/class.contacts_shared.inc.php');
|
2001-01-25 08:07:04 +01:00
|
|
|
?>
|