1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

9 lines
139 B
PHP
Raw Normal View History

2012-05-15 15:51:43 +03:00
<?php
session_start();
if (isset($_SESSION['user'])) {
2015-08-29 21:42:26 -04:00
header("Location: /list/user/");
2012-05-15 15:51:43 +03:00
} else {
header("Location: /login/");
}
?>