diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-11 09:51:29 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-10-11 09:51:29 +0000 |
commit | ed1a53698a1d9f020c35d0cada0b9f4e990509a7 (patch) | |
tree | a8d5361e47e149af510d6b0a9f248e136628c606 /modules/block | |
parent | ba3c558f0de6a04810f55edd1c0b753223551ab5 (diff) | |
download | brdo-ed1a53698a1d9f020c35d0cada0b9f4e990509a7.tar.gz brdo-ed1a53698a1d9f020c35d0cada0b9f4e990509a7.tar.bz2 |
#180897 by sun and dvessel: fix various XHTML validity issues in Drupal by closing unclosed tags, avoiding empty table containers, and so on
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 58eac9048..5c8f354ce 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -82,7 +82,7 @@ function block_help($path, $arg) { </ul> "); $output .= '<h3>'. t('Module blocks') .'</h3>'; - $output .= '<p>'. t('Some modules generate blocks that become available when the modules are enabled. These blocks can be administered via the <a href="@admin-block">blocks administration page</a>.</p>', array('@admin-block' => url('admin/build/block'))) .'</p>'; + $output .= '<p>'. t('Some modules generate blocks that become available when the modules are enabled. These blocks can be administered via the <a href="@admin-block">blocks administration page</a>.', array('@admin-block' => url('admin/build/block'))) .'</p>'; $output .= '<h3>'. t('Administrator defined blocks') .'</h3>'; $output .= '<p>'. t('Administrators can also define custom blocks. These blocks consist of a title, a description, and a body which can be as long as you wish. Block content can be in any of the input formats supported for other content.') .'</p>'; $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@block">Block page</a>.', array('@block' => 'http://drupal.org/handbook/modules/block/')) .'</p>'; |