forked from extern/egroupware
Formatting
This commit is contained in:
parent
19bb06a54d
commit
90d97f0881
@ -1,11 +1,15 @@
|
||||
<?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");
|
||||
?>
|
||||
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");
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user