summaryrefslogtreecommitdiff
path: root/logout.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-06-28 12:32:48 +0300
committerAndrew Dolgov <[email protected]>2017-06-28 12:32:48 +0300
commit9f4927825bb5efeefdff9a2aac05c5b3200f5ef6 (patch)
treef7782cb57127c68bfd5c67fb0d90c725eb8f0e68 /logout.php
parent4496d4a5e1f3ddb5fd0b3a0315f12c207e7c9041 (diff)
move to internal user management because it's impossible to implement
proper transparent offline mode with http auth (worker is incapable of authenticating properly) MIGRATION: 1. disable HTTP authentication (this is important!) 2. add two new tables to db/scratch.db (sessions & users) 3. create users via useradm.php (same names and passwords, previous data is kept)
Diffstat (limited to 'logout.php')
-rw-r--r--logout.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/logout.php b/logout.php
new file mode 100644
index 0000000..e4d40ed
--- /dev/null
+++ b/logout.php
@@ -0,0 +1,10 @@
+<?php
+ require_once "config.php";
+ require_once "sessions.php";
+
+ session_destroy();
+
+ header("Location: login.php");
+
+?>
+