summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-01-28 15:24:16 +0000
committerDries Buytaert <dries@buytaert.net>2005-01-28 15:24:16 +0000
commitbb4dff0c920bb2e9441832131721df071c1ddf8a (patch)
treef5373763328533fe1b8354454f9315ea0c260e39
parent07acc7920f6f5d8606ddcbf95d807ea04b5bf649 (diff)
downloadbrdo-bb4dff0c920bb2e9441832131721df071c1ddf8a.tar.gz
brdo-bb4dff0c920bb2e9441832131721df071c1ddf8a.tar.bz2
- Patch #16399 by James: fixed typo in block.module.
-rw-r--r--modules/block.module2
-rw-r--r--modules/block/block.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/block.module b/modules/block.module
index 8d317536c..b4c566877 100644
--- a/modules/block.module
+++ b/modules/block.module
@@ -263,7 +263,7 @@ function block_admin_configure($module = NULL, $delta = 0) {
$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 '<em>blog</em>' for the blog page and '<em>blog/*</em>' for every personal blog. '<em>&lt;front&gt;</em>' 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);
diff --git a/modules/block/block.module b/modules/block/block.module
index 8d317536c..b4c566877 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -263,7 +263,7 @@ function block_admin_configure($module = NULL, $delta = 0) {
$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 '<em>blog</em>' for the blog page and '<em>blog/*</em>' for every personal blog. '<em>&lt;front&gt;</em>' 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);