mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
16 lines
443 B
PHP
16 lines
443 B
PHP
<?php
|
|
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");
|
|
?>
|