view admlogout.php @ 813:c635887048aa

Apply intval() to data when checking type.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 24 Nov 2014 18:26:22 +0200
parents ce11ea112a65
children ffacd904fd1f
line wrap: on
line source

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

stSetupCacheControl();

stSessionEnd(SESS_ADMIN);

header("Location: admin.php");
?>