mirror of
https://github.com/myronblair/tomsjavajive
synced 2026-06-30 17:50:32 -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;
|