2005-11-18 06:40:57 +01:00
|
|
|
<?
|
|
|
|
session_start();
|
|
|
|
|
2005-11-20 11:14:38 +01:00
|
|
|
require_once "config.php";
|
2005-11-20 12:19:20 +01:00
|
|
|
require_once "functions.php";
|
2005-11-20 11:14:38 +01:00
|
|
|
|
2005-11-20 12:19:20 +01:00
|
|
|
logout_user();
|
2005-11-18 06:40:57 +01:00
|
|
|
|
2005-11-20 11:14:38 +01:00
|
|
|
if (!USE_HTTP_AUTH) {
|
|
|
|
header("Location: login.php");
|
|
|
|
} else {
|
|
|
|
header("Location: tt-rss.php");
|
|
|
|
}
|
2005-11-18 06:40:57 +01:00
|
|
|
?>
|