summaryrefslogtreecommitdiff
path: root/www-ssl/logout.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-09 17:10:39 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-11-09 17:10:39 +0000
commit90242f14becf6081b7cf5b7800134e84c6c1919c (patch)
treeac922a4c3f471be3c2b0f13dbdc344c9c670785c /www-ssl/logout.php
parent1d219f5c776b1ce403586f0458881e5a05940454 (diff)
fehlermeldungen werden wieder angezeigt, und das rechtemengement ist dadurch genauer
git-svn-id: svn://svn.cccv.de/engel-system@29 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/logout.php')
-rwxr-xr-xwww-ssl/logout.php11
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");
?>