diff options
Diffstat (limited to 'www-ssl/logout.php')
-rwxr-xr-x | www-ssl/logout.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/www-ssl/logout.php b/www-ssl/logout.php index 23ec9aed..d8fe10a8 100755 --- a/www-ssl/logout.php +++ b/www-ssl/logout.php @@ -1,6 +1,5 @@ <?php -$title = "Himmel"; -$header = "News"; +include ("./inc/config.php"); // Die Session zerstoeren... session_start(); @@ -8,11 +7,7 @@ session_destroy (); // und eine neue erstellen, damit kein Erzengelmenü angezeigt wird (falls sich ein Erzengel abmeldet...) session_start(); -include ("./inc/header.php"); +header("HTTP/1.1 302 Moved Temporarily"); +header("Location: ". substr($url, 0, strlen($url)-1). $ENGEL_ROOT); -echo Get_Text("index_logout")."<br><br>"; - -include ("./inc/login_eingabefeld.php"); - -include ("./inc/footer.php"); ?> |