mirror of
https://github.com/myvesta/vesta
synced 2025-07-06 21:11:51 -07:00
13 lines
155 B
PHP
13 lines
155 B
PHP
<?php
|
|
|
|
session_start();
|
|
|
|
if (!empty($_SESSION['look'])) {
|
|
unset($_SESSION['look']);
|
|
} else {
|
|
session_destroy();
|
|
}
|
|
|
|
header("Location: /");
|
|
exit;
|
|
?>
|