mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 13:49:29 +00:00
13 lines
288 B
PHP
13 lines
288 B
PHP
<?php
|
|
session_start();
|
|
|
|
$path = dirname($_SERVER['PHP_SELF']);
|
|
|
|
if (!isset($_SESSION['user']) || $_SESSION['user']=='')
|
|
{
|
|
$_SESSION['request_uri']=$_SERVER['REQUEST_URI'];
|
|
|
|
header('Location: '.SERVER_ROOT.($path == '/' ? '' : $path).'/login.php');
|
|
exit;
|
|
}
|
|
?>
|