dolibarr/htdocs/user/logout.php
2003-08-30 09:27:49 +00:00

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