? help-blocks-1.patch ? help-blocks.patch ? includes/password.inc ? includes/passwordhash.inc ? sites/default/files ? sites/default/settings.php Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.418 diff -u -p -r1.418 theme.inc --- includes/theme.inc 25 Mar 2008 14:10:01 -0000 1.418 +++ includes/theme.inc 1 Apr 2008 02:03:50 -0000 @@ -1172,17 +1172,6 @@ function theme_breadcrumb($breadcrumb) { } /** - * Return a themed help message. - * - * @return a string containing the helptext for the current page. - */ -function theme_help() { - if ($help = menu_get_active_help()) { - return '
'. $help .'
'; - } -} - -/** * Return a themed submenu, typically displayed under the tabs. * * @param $links @@ -1752,7 +1741,6 @@ function template_preprocess_page(&$vari $variables['feed_icons'] = drupal_get_feeds(); $variables['footer_message'] = filter_xss_admin(variable_get('site_footer', FALSE)); $variables['head'] = drupal_get_html_head(); - $variables['help'] = theme('help'); $variables['language'] = $GLOBALS['language']; $variables['language']->dir = $GLOBALS['language']->direction ? 'rtl' : 'ltr'; $variables['logo'] = theme_get_setting('logo'); Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.301 diff -u -p -r1.301 block.module --- modules/block/block.module 21 Mar 2008 08:41:25 -0000 1.301 +++ modules/block/block.module 1 Apr 2008 02:03:51 -0000 @@ -68,7 +68,7 @@ function block_help($path, $arg) { switch ($path) { case 'admin/help#block': $output = '

'. t('Blocks are boxes of content rendered into an area, or region, of a web page. The default theme Garland, for example, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and a block may appear in any one of these areas. The blocks administration page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions.', array('@blocks' => url('admin/build/block'))) .'

'; - $output .= '

'. t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available input format.', array('@input-format' => url('admin/settings/filters'))) .'

'; + $output .= '

'. t('Although blocks are usually generated automatically by modules (like the User login block or System help blocks, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available input format. Some modules may also use custom blocks containing help text and other content to display additional information on specific pages.', array('@input-format' => url('admin/settings/filters'))) .'

'; $output .= '

'. t('When working with blocks, remember that:') .'

'; $output .= '