? help_message.patch
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.314
diff -u -p -r1.314 theme.inc
--- includes/theme.inc	1 Sep 2006 08:44:53 -0000	1.314
+++ includes/theme.inc	3 Sep 2006 04:08:19 -0000
@@ -381,7 +381,7 @@ function theme_page($content) {
    $output .= $tabs;
   }
 
-  $output .= theme('help');
+  $output .= theme('help_message');
 
   $output .= theme('status_messages');
 
@@ -590,7 +590,7 @@ function theme_breadcrumb($breadcrumb) {
  *
  * @return a string containing the helptext for the current page.
  */
-function theme_help() {
+function theme_help_message() {
   if ($help = menu_get_active_help()) {
     return '<div class="help">'. $help .'</div>';
   }
Index: themes/chameleon/chameleon.theme
===================================================================
RCS file: /cvs/drupal/drupal/themes/chameleon/chameleon.theme,v
retrieving revision 1.52
diff -u -p -r1.52 chameleon.theme
--- themes/chameleon/chameleon.theme	30 Aug 2006 07:37:14 -0000	1.52
+++ themes/chameleon/chameleon.theme	3 Sep 2006 04:08:19 -0000
@@ -88,7 +88,7 @@ function chameleon_page($content, $show_
     $output .= $tabs;
   }
 
-  $output .= theme('help');
+  $output .= theme('help_message');
 
   $output .= theme('status_messages');
 
Index: themes/engines/phptemplate/phptemplate.engine
===================================================================
RCS file: /cvs/drupal/drupal/themes/engines/phptemplate/phptemplate.engine,v
retrieving revision 1.47
diff -u -p -r1.47 phptemplate.engine
--- themes/engines/phptemplate/phptemplate.engine	30 Aug 2006 07:37:14 -0000	1.47
+++ themes/engines/phptemplate/phptemplate.engine	3 Sep 2006 04:08:19 -0000
@@ -204,7 +204,7 @@ function phptemplate_page($content, $sho
     'footer_message'      => filter_xss_admin(variable_get('site_footer', FALSE)) . "\n" . theme('blocks', 'footer'),
     'head'                => drupal_get_html_head(),
     'head_title'          => implode(' | ', $head_title),
-    'help'                => theme('help'),
+    'help'                => theme('help_message'),
     'language'            => $GLOBALS['locale'],
     'layout'              => $layout,
     'logo'                => theme_get_setting('logo'),
