mirror of
https://github.com/myvesta/vesta.git
synced 2025-01-10 04:52:54 -08:00
14 lines
161 B
PHP
14 lines
161 B
PHP
<?php
|
|
|
|
session_start();
|
|
|
|
if (!empty($_SESSION['look'])) {
|
|
unset($_SESSION['look']);
|
|
} else {
|
|
session_destroy();
|
|
}
|
|
|
|
header("Location: /login/");
|
|
exit;
|
|
?>
|