ttrss/logout.php

15 lines
205 B
PHP
Raw Normal View History

2005-11-18 06:40:57 +01:00
<?
session_start();
2005-11-20 11:14:38 +01:00
require_once "config.php";
require_once "functions.php";
2005-11-20 11:14:38 +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
?>