egroupware_official/phpgwapi/inc/class.contacts.inc.php

9 lines
284 B
PHP
Raw Normal View History

<?php
2001-07-05 09:37:36 +02:00
if (!$phpgw_info['server']['contact_repository'])
2001-05-21 11:12:10 +02:00
{
2001-07-05 09:37:36 +02:00
$phpgw_info['server']['contact_repository'] = 'sql';
2001-05-21 11:12:10 +02:00
}
2001-07-05 09:37:36 +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
?>