Code

Updated mapping patch
[gosa.git] / gosa-core / html / logout.php
index 93532c9d88dbb8e7d3a1685abd7fc449c0939496..c9ed421b62a3ddbd79671fa568f2e819ba8e6367 100644 (file)
@@ -51,6 +51,10 @@ if ((!isset($config)) || $config->get_cfg_value("core","language") == ""){
   $lang= $config->get_cfg_value("core","language");
 }
 
+// Try to keep track of logouts, this will fail if our session has already expired. 
+// Nothing will be logged if config isn't present anymore.
+stats::log('global', 'global', array(),  $action = 'logout', $amount = 1, 0);
+
 putenv("LANGUAGE=");
 putenv("LANG=$lang");
 setlocale(LC_ALL, $lang);
@@ -69,6 +73,13 @@ if (isset($config)){
 } else {
        $smarty->compile_dir= '/var/spool/gosa/';
 }
+
+if(!is_writeable($smarty->compile_dir)){
+
+    header('location: index.php');
+    exit();
+}
+
 $smarty->assign ("title","GOsa");
     
 /* If GET request is posted, the logout was forced by pressing the link */