2001-01-11 10:52:33 +01:00
|
|
|
<?php
|
2001-02-06 10:19:38 +01:00
|
|
|
if (empty($phpgw_info["server"]["account_repository"])){
|
|
|
|
if (!empty($phpgw_info["server"]["auth_type"])){
|
|
|
|
$phpgw_info["server"]["account_repository"] = $phpgw_info["server"]["auth_type"];
|
|
|
|
}else{
|
|
|
|
$phpgw_info["server"]["account_repository"] = "sql";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
include(PHPGW_API_INC."/class.accounts_".$phpgw_info["server"]["account_repository"].".inc.php");
|
|
|
|
include(PHPGW_API_INC."/class.accounts_shared.inc.php");
|
2001-01-11 10:52:33 +01:00
|
|
|
?>
|