summaryrefslogtreecommitdiff
path: root/modules/statistics
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-03-18 07:07:04 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-03-18 07:07:04 +0000
commitc3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3 (patch)
treeae04944993488152cb0fada2c0857ff67ebb8483 /modules/statistics
parentab7815c8cdcd1bbb1d2d12ec58d2c90c9ac77720 (diff)
downloadbrdo-c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3.tar.gz
brdo-c3f1f7345ecb6ba69ec4bfc0ee1658e3fbc1aff3.tar.bz2
- #18939 (Stefan): Always use paragraph tags around page help text.
Diffstat (limited to 'modules/statistics')
-rw-r--r--modules/statistics/statistics.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
index 5286d92d3..bc57b0ab2 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/statistics.module
@@ -42,11 +42,11 @@ function statistics_help($section) {
case 'admin/modules#description':
return t('Logs access statistics for your site.');
case 'admin/settings/statistics':
- return t('Settings for the statistical information that Drupal will keep about the site. See <a href="%statistics">site statistics</a> for the actual information.', array('%statistics' => url('admin/logs/hits')));
+ return t('<p>Settings for the statistical information that Drupal will keep about the site. See <a href="%statistics">site statistics</a> for the actual information.</p>', array('%statistics' => url('admin/logs/hits')));
case 'admin/logs/hits':
- return t('This page shows you the most recent hits.');
+ return t('<p>This page shows you the most recent hits.</p>');
case 'admin/logs/referrers':
- return t('This page shows you all external referrers. These are links pointing to your web site from outside your web site.');
+ return t('<p>This page shows you all external referrers. These are links pointing to your web site from outside your web site.</p>');
}
}