view admlogout.php @ 814:e59d57cc3aa8

Update example config.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 24 Nov 2014 18:55:03 +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");
?>