diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-28 11:12:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-28 11:12:38 +0000 |
commit | d172bad5590136a6aafd2eb4128e6917434676c9 (patch) | |
tree | 4366eefded98d15ee1322c72ef846f68255686b0 | |
parent | 08d5e0f1c5a7aa9ec24d468aed2be72b91e41c05 (diff) | |
download | brdo-d172bad5590136a6aafd2eb4128e6917434676c9.tar.gz brdo-d172bad5590136a6aafd2eb4128e6917434676c9.tar.bz2 |
- Patch #98390 by Heine: correcting the help text.
-rw-r--r-- | modules/block/block.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.module b/modules/block/block.module index 894a39d50..6dd3a473d 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -40,7 +40,7 @@ function block_help($section) { <p>If you want certain blocks to disable themselves temporarily during high server loads, check the "Throttle" box. You can configure the auto-throttle on the <a href="@throttle">throttle configuration page</a> after having enabled the throttle module.</p> <p>You can configure the behaviour of each block (for example, specifying on which pages and for what users it will appear) by clicking the "configure" link for each block.</p>', array('@throttle' => url('admin/settings/throttle'))); case 'admin/build/block/add': - return '<p>'. t('Here you can create a new block. Once you have created this block you must make it active and give it a place on the page using <a href="@overview">blocks</a>. The title is used when displaying the block. The description is used in the "block" column on the <a href="@overview">blocks</a> page.', array('@overview' => url('admin/build/block'))) .'</p>'; + return '<p>'. t('Here you can create a new block. Once you have created this block you must make it active and give it a place on the page using <a href="@overview">blocks</a>. The description is used in the "block" column on the <a href="@overview">blocks</a> page.', array('@overview' => url('admin/build/block'))) .'</p>'; } } |