summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-24 10:33:39 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-24 10:33:39 +0000
commit3fa5b710154a9bdf442923c7e8c3f6f819c39c55 (patch)
treedb4ce5e4df1ec80a9c0309c1a2bb0253c9b5a1b2 /modules
parent5d71254605b2009a11da7b11b5c439da2345d453 (diff)
downloadbrdo-3fa5b710154a9bdf442923c7e8c3f6f819c39c55.tar.gz
brdo-3fa5b710154a9bdf442923c7e8c3f6f819c39c55.tar.bz2
#203482 by Desbeers: block module HTML typo in help (outside t())
Diffstat (limited to 'modules')
-rw-r--r--modules/block/block.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.module b/modules/block/block.module
index 647f12a4c..b65713d39 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -70,7 +70,7 @@ function block_help($path, $arg) {
$output = '<p>'. t('Blocks are boxes of content rendered into an area, or region, of a web page. The default theme Garland, for example, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and a block may appear in any one of these areas. The <a href="@blocks">blocks administration page</a> provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions.', array('@blocks' => url('admin/build/block'))) .'</p>';
$output .= '<p>'. t('Although blocks are usually generated automatically by modules (like the <em>User login</em> block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available <a href="@input-format">input format</a>.', array('@input-format' => url('admin/settings/filters'))) .'</p>';
$output .= '<p>'. t('When working with blocks, remember that:') .'</p>';
- $output .= '<ul><li>'. t('since not all themes implement the same regions, or display regions in the same way, blocks are positioned on a per-theme basis.') .'</p>';
+ $output .= '<ul><li>'. t('since not all themes implement the same regions, or display regions in the same way, blocks are positioned on a per-theme basis.') .'</li>';
$output .= '<li>'. t('disabled blocks, or blocks not in a region, are never shown.') .'</li>';
$output .= '<li>'. t('when throttle module is enabled, throttled blocks (blocks with the <em>Throttle</em> checkbox selected) are hidden during high server loads.') .'</li>';
$output .= '<li>'. t('blocks can be configured to be visible only on certain pages.') .'</li>';