view usrlogout.php @ 1120:b2bca5f6d0ff default tip

Cosmetic cleanup: remove trailing whitespace.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 13 Dec 2020 13:47:13 +0200
parents 48e16e856646
children
line wrap: on
line source

<?php
//
// FAPWeb - Simple Web-based Demoparty Management System
// User interface session logout
// (C) Copyright 2012-2017 Tecnic Software productions (TNSP)
//
$sessionType = "user";
require_once "mconfig.inc.php";
require_once "msite.inc.php";
require_once "msession.inc.php";


//
// Initialize
//
stSetupCacheControl();

stSessionEnd(SESS_USER);

header("Location: vote");
?>