annotate usrlogout.php @ 1110:a5f52e54c9da

Improve stDBGetTableSchema().
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 16 May 2019 23:25:49 +0300
parents 48e16e856646
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1074
48e16e856646 Use long tags.
Matti Hamalainen <ccr@tnsp.org>
parents: 1072
diff changeset
1 <?php
155
5b92f130ba87 Add copyright header blurbs.
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
155
5b92f130ba87 Add copyright header blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
4 // User interface session logout
1072
7da8bde9b7be Bump copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 1001
diff changeset
5 // (C) Copyright 2012-2017 Tecnic Software productions (TNSP)
155
5b92f130ba87 Add copyright header blurbs.
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
6 //
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 $sessionType = "user";
175
8df523e6326a User require_once instead of require.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
8 require_once "mconfig.inc.php";
8df523e6326a User require_once instead of require.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
9 require_once "msite.inc.php";
234
8d4ca15f2fbc Include msession.
Matti Hamalainen <ccr@tnsp.org>
parents: 175
diff changeset
10 require_once "msession.inc.php";
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11
234
8d4ca15f2fbc Include msession.
Matti Hamalainen <ccr@tnsp.org>
parents: 175
diff changeset
12
8d4ca15f2fbc Include msession.
Matti Hamalainen <ccr@tnsp.org>
parents: 175
diff changeset
13 //
8d4ca15f2fbc Include msession.
Matti Hamalainen <ccr@tnsp.org>
parents: 175
diff changeset
14 // Initialize
8d4ca15f2fbc Include msession.
Matti Hamalainen <ccr@tnsp.org>
parents: 175
diff changeset
15 //
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 stSetupCacheControl();
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17
51
7bdf89601ba0 Work on session stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 45
diff changeset
18 stSessionEnd(SESS_USER);
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19
45
842003d78994 Remove stuff.
Matti Hamalainen <ccr@tnsp.org>
parents: 32
diff changeset
20 header("Location: vote");
32
36392d1d6b5f Moar work.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21 ?>