Index: modules/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block.module,v retrieving revision 1.151 diff -u -r1.151 block.module --- modules/block.module 27 Jan 2005 22:53:35 -0000 1.151 +++ modules/block.module 28 Jan 2005 15:19:08 -0000 @@ -263,7 +263,7 @@ $group_2 .= form_textarea(t('Pages'), 'pages', $edit['pages'], 40, 5, t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are 'blog' for the blog page and 'blog/*' for every personal blog. '<front>' is the front page.")); $group_3 = form_checkboxes(t('Restrict block to specific content types'), 'types', explode(',', $edit['types']), $content_types, t('Selecting one or more content types will cause this block to only be shown on pages of the selected types. This feature works alone or in conjunction with page specific visibility settings. For example, you can specify that a block only appear on book pages in the \'FAQ\' path.'), NULL, FALSE); - $form = form_group(t('User specific visibility settings'), $group_1); + $form .= form_group(t('User specific visibility settings'), $group_1); $form .= form_group(t('Page specific visibility settings'), $group_2); $form .= form_group(t('Content specific visibility settings'), $group_3);