diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-11-03 15:39:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-11-03 15:39:37 +0000 |
commit | 7bd728ef4ad48f95706297daa1328657e93cb288 (patch) | |
tree | b5691d01e40d811357d30585ab36d7e3c830f349 | |
parent | 76012bc70a4f6ca69dc9ed6ab96c030334384f70 (diff) | |
download | brdo-7bd728ef4ad48f95706297daa1328657e93cb288.tar.gz brdo-7bd728ef4ad48f95706297daa1328657e93cb288.tar.bz2 |
- Patch #36029 by asimmonds: fixed typo that prevents 'admin - block - configure' from working.
-rw-r--r-- | modules/block.module | 2 | ||||
-rw-r--r-- | modules/block/block.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/block.module b/modules/block.module index 5770d2769..115a3f879 100644 --- a/modules/block.module +++ b/modules/block.module @@ -358,7 +358,7 @@ function block_admin_configure($module = NULL, $delta = 0) { '#type' => 'radios', '#title' => t('Custom visibility settings'), '#default_value' => $edit['custom'], - '#options' => array(t('Users cannot control whether or not they see this block.'), t('Show this block by default, but let individual users hide it.'), t('Hide this block by default but let individual users show it.')), t('Allow individual users to customize the visibility of this block in their account settings.'), + '#options' => array(t('Users cannot control whether or not they see this block.'), t('Show this block by default, but let individual users hide it.'), t('Hide this block by default but let individual users show it.'), t('Allow individual users to customize the visibility of this block in their account settings.')), '#default_value' => $edit['custom']); diff --git a/modules/block/block.module b/modules/block/block.module index 5770d2769..115a3f879 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -358,7 +358,7 @@ function block_admin_configure($module = NULL, $delta = 0) { '#type' => 'radios', '#title' => t('Custom visibility settings'), '#default_value' => $edit['custom'], - '#options' => array(t('Users cannot control whether or not they see this block.'), t('Show this block by default, but let individual users hide it.'), t('Hide this block by default but let individual users show it.')), t('Allow individual users to customize the visibility of this block in their account settings.'), + '#options' => array(t('Users cannot control whether or not they see this block.'), t('Show this block by default, but let individual users hide it.'), t('Hide this block by default but let individual users show it.'), t('Allow individual users to customize the visibility of this block in their account settings.')), '#default_value' => $edit['custom']); |