view admlogout.php @ 511:6fe66ea0e954

Move most of the results code to site module, remove the support for HTML type output.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 08 Dec 2013 02:16:26 +0200
parents 59e9bacd604c
children ed2247111fdd
line wrap: on
line source

<?
//
// FAPWeb Simple Demoparty System
// Administration interface session logout
// (C) Copyright 2012-2013 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");
?>