MastodonHelp/web/mustard/logout.php

10 lines
122 B
PHP
Raw Normal View History

2020-01-11 20:05:15 +01:00
<?php
2020-05-08 17:38:54 +02:00
session_name('mustard');
2020-01-11 20:05:15 +01:00
session_start();
$_SESSION=array();
session_destroy();
header('Location: index.php');
?>