- Add session support - Refactor security handling to use db connection - Fix db path issue
11 lines
150 B
PHP
11 lines
150 B
PHP
<?php
|
|
/**
|
|
* User Log Off Page
|
|
*/
|
|
|
|
include '../../start.php';
|
|
|
|
if (array_key_exists(Key::USER_ID, $_SESSION)) session_destroy();
|
|
|
|
frc_redirect('/');
|