? D6-feature_forum_node_types_0.patch
? blame.txt
? core-theme_help_message-72645-5.patch
? custom-error.patch
? files
? help_message.patch
? image.inc_148346.patch
? index-blame.txt
? includes/image.gd.inc
? sites/default/settings.php
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.358
diff -u -p -r1.358 theme.inc
--- includes/theme.inc	8 Jun 2007 12:51:58 -0000	1.358
+++ includes/theme.inc	16 Jun 2007 04:38:28 -0000
@@ -1048,7 +1048,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>';
   }
@@ -1525,7 +1525,7 @@ function template_preprocess_page(&$vari
   $variables['feed_icons']        = drupal_get_feeds();
   $variables['footer_message']    = filter_xss_admin(variable_get('site_footer', FALSE)) . "\n" . theme('blocks', 'footer');
   $variables['head']              = drupal_get_html_head();
-  $variables['help']              = theme('help');
+  $variables['help']              = theme('help_message');
   $variables['language']          = $GLOBALS['language'];
   $variables['logo']              = theme_get_setting('logo');
   $variables['messages']          = $variables['show_messages'] ? theme('status_messages') : '';
Index: themes/chameleon/chameleon.theme
===================================================================
RCS file: /cvs/drupal/drupal/themes/chameleon/chameleon.theme,v
retrieving revision 1.66
diff -u -p -r1.66 chameleon.theme
--- themes/chameleon/chameleon.theme	11 Jun 2007 15:21:14 -0000	1.66
+++ themes/chameleon/chameleon.theme	16 Jun 2007 04:38:29 -0000
@@ -91,7 +91,7 @@ function chameleon_page($content, $show_
     $output .= $tabs;
   }
 
-  $output .= theme('help');
+  $output .= theme('help_message');
 
   if ($show_messages) {
     $output .= theme('status_messages');
@@ -184,7 +184,7 @@ function chameleon_comment($comment, $li
   return $output;
 }
 
-function chameleon_help() {
+function chameleon_help_message() {
   if ($help = menu_get_active_help()) {
     return '<div class="help">'. $help .'</div><hr />';
   }
Index: themes/garland/page.tpl.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/garland/page.tpl.php,v
retrieving revision 1.7
diff -u -p -r1.7 page.tpl.php
--- themes/garland/page.tpl.php	4 May 2007 09:41:37 -0000	1.7
+++ themes/garland/page.tpl.php	16 Jun 2007 04:38:29 -0000
@@ -69,7 +69,6 @@
           <?php if ($tabs): print $tabs .'</div>'; endif; ?>
 
           <?php if (isset($tabs2)): print $tabs2; endif; ?>
-
           <?php if ($help): print $help; endif; ?>
           <?php if ($show_messages && $messages): print $messages; endif; ?>
           <?php print $content ?>
