MastodonStartpage/web/mustard/logout.php
pezcurrel 85876775c4 ...
2020-05-07 07:24:56 +02:00

9 lines
130 B
PHP

<?php
session_name('mastostartadmin');
session_start();
$_SESSION=array();
session_destroy();
header('Location: index.php');
?>