Index: includes/form.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/form.inc,v retrieving revision 1.320 diff -u -p -r1.320 form.inc --- includes/form.inc 3 Feb 2009 18:55:29 -0000 1.320 +++ includes/form.inc 3 Feb 2009 20:10:18 -0000 @@ -1819,7 +1819,7 @@ function form_process_radios($element) { * * @see system_elements(), filter_form() */ -function form_process_input_format($element) { +function form_process_text_format($element) { if (isset($element['#text_format'])) { // Determine the form element parents and element name to use for the input // format widget. This simulates the 'element' and 'element_format' pair of @@ -2277,11 +2277,9 @@ function theme_textarea($element) { /** * Format HTML markup for use in forms. * - * This is used in more advanced forms, such as theme selection and filter format. - * * @param $element * An associative array containing the properties of the element. - * Properties used: value, children. + * Properties used: markup, children. * @return * A themed HTML string representing the HTML markup. * Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.321 diff -u -p -r1.321 block.module --- modules/block/block.module 3 Feb 2009 12:30:14 -0000 1.321 +++ modules/block/block.module 3 Feb 2009 20:10:18 -0000 @@ -67,7 +67,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, 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 text format.', array('@text-format' => url('admin/settings/filter'))) . '

'; $output .= '

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

'; $output .= '