mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-09-18 03:51:00 +02:00
13 lines
168 B
PHP
13 lines
168 B
PHP
<?
|
|
session_start();
|
|
|
|
$_SESSION["uid"] = null;
|
|
$_SESSION["name"] = null;
|
|
$_SESSION["access_level"] = null;
|
|
|
|
session_destroy();
|
|
|
|
header("Location: login.php");
|
|
|
|
?>
|