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