1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-01 12:40:50 +02:00
ttrss/logout.php
2005-11-18 06:40:57 +01:00

12 lines
135 B
PHP

<?
session_start();
$_SESSION["uid"] = null;
$_SESSION["name"] = null;
session_destroy();
header("Location: tt-rss.php");
?>