annotate admlogout.php @ 236:59e9bacd604c

Change logout forward page.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 21 Nov 2013 20:00:27 +0200
parents 8df523e6326a
children ed2247111fdd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 <?
136
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
2 //
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
3 // FAPWeb Simple Demoparty System
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
4 // Administration interface session logout
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
5 // (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
6 //
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 $sessionType = "admin";
175
8df523e6326a User require_once instead of require.
Matti Hamalainen <ccr@tnsp.org>
parents: 136
diff changeset
8 require_once "mconfig.inc.php";
8df523e6326a User require_once instead of require.
Matti Hamalainen <ccr@tnsp.org>
parents: 136
diff changeset
9 require_once "msite.inc.php";
8df523e6326a User require_once instead of require.
Matti Hamalainen <ccr@tnsp.org>
parents: 136
diff changeset
10 require_once "msession.inc.php";
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 stSetupCacheControl();
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13
51
7bdf89601ba0 Work on session stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 33
diff changeset
14 stSessionEnd(SESS_ADMIN);
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15
236
59e9bacd604c Change logout forward page.
Matti Hamalainen <ccr@tnsp.org>
parents: 175
diff changeset
16 header("Location: admin.php");
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 ?>