annotate admlogout.php @ 1071:76e11ae923a7

Use long tags.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 24 Jan 2017 17:44:50 +0200
parents ffacd904fd1f
children 7da8bde9b7be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1071
76e11ae923a7 Use long tags.
Matti Hamalainen <ccr@tnsp.org>
parents: 1001
diff changeset
1 <?php
136
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
2 //
571
ce11ea112a65 Change the header blurb a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 565
diff changeset
3 // FAPWeb - Simple Web-based Demoparty Management System
136
aeebfedb5709 Add some copyright headers.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
4 // Administration interface session logout
1001
ffacd904fd1f Update copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 571
diff changeset
5 // (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
136
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 ?>