summaryrefslogtreecommitdiff
path: root/logout.php
blob: 7757689dcccebe9d7acdad692e4d2372c1f00b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?
	session_start();

	require_once "config.php";
	require_once "functions.php";

	logout_user();

	if (!USE_HTTP_AUTH) {
		header("Location: login.php");
	} else {
		header("Location: tt-rss.php");
	}
?>