New, simpler WEB UI

This commit is contained in:
Serghey Rodin 2012-05-15 15:51:43 +03:00
commit d352cb9385
439 changed files with 3920 additions and 45184 deletions

12
web/logout/index.php Normal file
View file

@ -0,0 +1,12 @@
<?php
session_start();
if (!empty($_SESSION['look'])) {
unset($_SESSION['look']);
} else {
session_destroy();
}
header("Location: /");
?>