Formatting

This commit is contained in:
Miles Lott 2001-05-02 12:08:11 +00:00
parent 19bb06a54d
commit 90d97f0881

View File

@ -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");
?>