=== modified file 'autologout/autologout.module'
--- autologout/autologout.module	2012-10-26 12:12:16 +0000
+++ autologout/autologout.module	2012-10-29 11:15:08 +0000
@@ -130,27 +130,29 @@
  * Adds a field to user/edit to change that users logout.
  */
 function autologout_form_user_profile_form_alter(&$form, $form_state) {
-  $user_timeout = _autologout_get_user_timeout();
-  global $user;
-  $current_uid = $user -> uid; //Get UID of user that is accessing page
-  $userid = $form['#uid']; //Get UID of user whos profile is being edited 
-
-  $access = FALSE; 
-  if ((user_access('change own logout threshold') && $current_uid == $userid) || user_access('auto administer autologout')) { // If user has access to change, and they are changing their own and only thier own timeout. Or they are an admin
-  $access = TRUE;
-  }
-  if ($access) { //check access when validating element
-
-    $form['autologout_user_' . $userid] = array(
-      '#type' => 'textfield',
-      '#title' => t('Your current logout threshold'),
-      '#default_value' => variable_get('autologout_user_' . $userid, ""),
-      '#size' => 8,
-      '#description' => t('How many seconds to give a user to respond to the logout dialog before ending their session.'),
-      '#element_validate' => array('_autologout_user_uid_timeout_validate'),// Validate this element
-    );
-
-    $form['#submit'][] = 'autologout_user_profile_submit';
+  if (variable_get('autologout_allow_individual_user_timeouts', FALSE) {
+    $user_timeout = _autologout_get_user_timeout();
+    global $user;
+    $current_uid = $user -> uid; //Get UID of user that is accessing page
+    $userid = $form['#uid']; //Get UID of user whos profile is being edited 
+
+    $access = FALSE; 
+    if ((user_access('change own logout threshold') && $current_uid == $userid) || user_access('auto administer autologout')) { // If user has access to change, and they are changing their own and only thier own timeout. Or they are an admin
+      $access = TRUE;
+    }
+    if ($access) { //check access when validating element
+
+      $form['autologout_user_' . $userid] = array(
+        '#type' => 'textfield',
+        '#title' => t('Your current logout threshold'),
+        '#default_value' => variable_get('autologout_user_' . $userid, ""),
+        '#size' => 8,
+        '#description' => t('How many seconds to give a user to respond to the logout dialog before ending their session.'),
+        '#element_validate' => array('_autologout_user_uid_timeout_validate'),// Validate this element
+      );
+
+      $form['#submit'][] = 'autologout_user_profile_submit';
+    }
   }
 }

