Index: autologout.module
===================================================================
--- autologout.module	(revision 3686)
+++ autologout.module	(working copy)
@@ -191,10 +191,12 @@
  * NOTE: Do as little as possible here. A lot of modules are not loaded at this point.
  */
 function autologout_boot() {
-  if ( !isset($_SESSION['autologout_hits']) ) {
-    $_SESSION['autologout_hits'] = array();
+  if (_autologout_local_settings('enabled')) {
+    if ( !isset($_SESSION['autologout_hits']) ) {
+      $_SESSION['autologout_hits'] = array();
+    }
+    $_SESSION['autologout_hits'][] = time();
   }
-  $_SESSION['autologout_hits'][] = time();
 }
 
 /* {{{ autologout_init() */
