mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
10 lines
156 B
PHP
10 lines
156 B
PHP
<?
|
|
require_once "Auth/Auth.php";
|
|
$a = new Auth("DB");
|
|
$a->setShowLogin (false);
|
|
$a->start();
|
|
if ($a->getAuth())
|
|
$a->logout();
|
|
header("Location: /");
|
|
?>
|