mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-10 23:53:31 -05:00
6 lines
103 B
Plaintext
6 lines
103 B
Plaintext
<?php session_start();
|
|
if(!isset($_SESSION['id'])){
|
|
header('Location: ../login/');
|
|
exit();
|
|
}
|
|
?> |