mirror of
https://github.com/myronblair/tomsjavajive
synced 2026-07-28 09:12:36 -05:00
11 lines
197 B
PHP
11 lines
197 B
PHP
<?php
|
|
/**
|
|
* Tom's Java Jive - Admin Logout
|
|
*/
|
|
require_once __DIR__ . '/../includes/auth.php';
|
|
AdminAuth::logout();
|
|
session_unset();
|
|
session_destroy();
|
|
header('Location: /admin/login.php');
|
|
exit;
|