1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
2013-01-19 23:57:58 +04:00

14 lines
155 B
PHP

<?php
session_start();
if (!empty($_SESSION['look'])) {
unset($_SESSION['look']);
} else {
session_destroy();
}
header("Location: /");
exit;
?>