mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-01-09 20:33:37 -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;
|
|
?>
|