This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
|
<?php
|
|
|
|
|
include ("./inc/config.php");
|
|
|
|
|
|
|
|
|
|
// Die Session zerstoeren...
|
|
|
|
|
session_start();
|
|
|
|
|
session_destroy ();
|
|
|
|
|
// und eine neue erstellen, damit kein Erzengelmen<65> angezeigt wird (falls sich ein Erzengel abmeldet...)
|
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
|
|
header("HTTP/1.1 302 Moved Temporarily");
|
|
|
|
|
header("Location: ". substr($url, 0, strlen($url)-1). $ENGEL_ROOT);
|
|
|
|
|
|
|
|
|
|
?>
|