-
Notifications
You must be signed in to change notification settings - Fork 35
/
logout.php
23 lines (20 loc) · 978 Bytes
/
logout.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/************************************************************************/
/* AContent */
/************************************************************************/
/* Copyright (c) 2010 */
/* Inclusive Design Institute */
/* */
/* This program is free software. You can redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/************************************************************************/
define('TR_INCLUDE_PATH', 'include/');
require(TR_INCLUDE_PATH.'vitals.inc.php');
// unset all session variables
session_unset();
$_SESSION = array();
$msg->addFeedback('LOGOUT');
header('Location: index.php');
exit;
?>