? 546310.patch
Index: autologout.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/autologout/autologout.module,v
retrieving revision 1.9.2.5
diff -u -p -r1.9.2.5 autologout.module
--- autologout.module	3 Aug 2009 14:27:09 -0000	1.9.2.5
+++ autologout.module	11 Aug 2009 18:40:46 -0000
@@ -90,7 +90,7 @@ function autologout_init() {
 function autologout_menu() {
 
   $items['autologout/logout'] = array(
-    'title' => t('Automated logout'),
+    'title' => t('Logged out'),
     'page callback' => 'autologout_logout',
     'access callback' => TRUE,
     'type' => MENU_CALLBACK
@@ -145,7 +145,7 @@ function theme_autologout_block() {
           <span style="display:none" class="cdt_interval">'. $seconds .'</span>
           <span style="display:none" class="dir">down</span>
           <span style="display:none" class="format_txt">' . t('You will be logged out in ') . ' %hours%:%mins%:%secs%</span>
-          <span style="display:none" class="complete">'. t('You have been logged out by the Automated Logout Module.') .'</span>
+          <span style="display:none" class="complete">'. t('You have been automatically logged out due to inactivity.') .'</span>
       ';
     }
     return $content;
@@ -157,9 +157,9 @@ function autologout_logout() {
   global $user;
   
   if ($user->uid == 0 ) {
-    print theme('page', t('You have been logged out by the Automated Logout Module.'));
+    print theme('page', t('You have been automatically logged out due to inactivity.'));
   }
   else {
     drupal_goto();
   }
-}
\ No newline at end of file
+}
