diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 07:07:04 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-03-18 07:07:04 +0000 |
commit | c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3 (patch) | |
tree | ae04944993488152cb0fada2c0857ff67ebb8483 /modules/block | |
parent | ab7815c8cdcd1bbb1d2d12ec58d2c90c9ac77720 (diff) | |
download | brdo-c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3.tar.gz brdo-c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3.tar.bz2 |
- #18939 (Stefan): Always use paragraph tags around page help text.
Diffstat (limited to 'modules/block')
-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 38f23d5a3..78a848f5e 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -36,7 +36,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. ", array('%throttle' => url('admin/settings/throttle'))); case 'admin/block/add': - return 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/block'))); + return t('<p>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.</p>', array('%overview' => url('admin/block'))); } } |