mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-09 16:19:28 +00:00
6960789302
Vor und Zurück Buttons eingefügt,
12 lines
319 B
PHP
12 lines
319 B
PHP
<?php
|
|
session_cache_limiter('none'); //muss gesetzt werden sonst funktioniert der Download mit IE8 nicht
|
|
session_start();
|
|
|
|
if (!isset($_SESSION['incoming/user']) || $_SESSION['incoming/user']=='')
|
|
{
|
|
$_SESSION['request_uri']=$_SERVER['REQUEST_URI'];
|
|
|
|
header('Location: index.php');
|
|
exit;
|
|
}
|
|
?>
|