Code

Updated image
[gosa.git] / gosa-core / html / logout.php
index d5ef67d4af9902a5d05488eed40293c94df3ec84..787a021ba0d0679dbf622fbc083a76711fbe6616 100644 (file)
@@ -69,9 +69,10 @@ if (isset($config)){
 } else {
        $smarty->compile_dir= '/var/spool/gosa/';
 }
+$smarty->assign ("title","GOsa");
     
 /* If GET request is posted, the logout was forced by pressing the link */
-if (isset($_GET['request'])){
+if (isset($_POST['forcedlogout']) || isset($_GET['forcedlogout'])){
   
   /* destroy old session */
   session::destroy ();
@@ -81,6 +82,7 @@ if (isset($_GET['request'])){
 
     /* Else notice that the user has to close the browser... */
     $smarty->assign("iePngWorkaround", FALSE);
+    $smarty->assign("usePrototype", "false");
     $smarty->display (get_template_path('headers.tpl'));
     $smarty->display (get_template_path('logout-close.tpl'));
     exit;
@@ -91,6 +93,7 @@ if (isset($_GET['request'])){
 
 }else{  // The logout wasn't forced, so the session is invalid 
   
+  $smarty->assign("usePrototype", "false");
   $smarty->display (get_template_path('headers.tpl'));
   $smarty->display (get_template_path('logout.tpl'));
   exit;