1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-03 13:00:51 +02:00
ttrss/logout.php

12 lines
135 B
PHP
Raw Normal View History

2005-11-18 06:40:57 +01:00
<?
session_start();
$_SESSION["uid"] = null;
$_SESSION["name"] = null;
session_destroy();
header("Location: tt-rss.php");
?>