? test2.pathc
? sites/default/settings.php
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.718
diff -u -p -r1.718 system.module
--- modules/system/system.module	1 Jul 2009 13:44:53 -0000	1.718
+++ modules/system/system.module	2 Jul 2009 16:25:51 -0000
@@ -112,6 +112,13 @@ function system_help($path, $arg) {
         return '<p>' . t('The <em>Powered by Drupal</em> block is an optional link to the home page of the Drupal project. While there is absolutely no requirement that sites feature this link, it may be used to show support for Drupal.') . '</p>';
       }
       break;
+    case 'admin/settings/maintenance-mode':
+      global $user;
+      global $base_url;
+      if($user->uid == 1){
+         return '<p>' . t('<p>If you are upgrading to a newer version of Drupal or upgrading contributed modules or themes you may need to run <a href="@update-php">update.php</a>.</p>',array('@update-php' => $base_url . '/update.php')) . '</p>';
+      }
+      break;
     case 'admin/settings/actions':
     case 'admin/settings/actions/manage':
       $output = '<p>' . t('Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions.') . '</p>';
