mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:12 +01:00
11 lines
447 B
PHP
11 lines
447 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");
|
||
|
?>
|