MastodonStartpage/web/mustard/logout.php

10 lines
130 B
PHP
Raw Normal View History

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