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

	$_SESSION["uid"] = null;
	$_SESSION["name"] = null;
	
	session_destroy();

	header("Location: tt-rss.php");

?>