summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-12-11 16:57:42 +0000
committerDries Buytaert <dries@buytaert.net>2006-12-11 16:57:42 +0000
commit22d317e5c476cc2a05a067d246c9a4772ed92d79 (patch)
tree6dd92515c6799f2fd1cca7d863f3effad4492511 /modules/node/node.module
parent5b384d39245f20e80e0635c1b76d7a2e589ffe27 (diff)
downloadbrdo-22d317e5c476cc2a05a067d246c9a4772ed92d79.tar.gz
brdo-22d317e5c476cc2a05a067d246c9a4772ed92d79.tar.bz2
- Patch #101562 by dvessel: <p>-tag clean ups.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 78c9cc13d..432252518 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -32,16 +32,16 @@ function node_help($section) {
case 'admin/content/types':
return '<p>'. t('Below is a list of all the content types on your site. All posts that exist on your site are instances of one of these content types.') .'</p>';
case 'admin/content/types/add':
- return '<p>'. t('To create a new content type, enter the human-readable name, the machine-readable name, and all other relevant fields that are on this page. Once created, users of your site will be able to create posts that are instances of this content type.');
+ return '<p>'. t('To create a new content type, enter the human-readable name, the machine-readable name, and all other relevant fields that are on this page. Once created, users of your site will be able to create posts that are instances of this content type.') .'</p>';
}
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'revisions') {
- return t('The revisions let you track differences between multiple versions of a post.');
+ return '<p>'. t('The revisions let you track differences between multiple versions of a post.') .'</p>';
}
if (arg(0) == 'node' && arg(1) == 'add' && $type = arg(2)) {
$type = node_get_types('type', arg(2));
- return filter_xss_admin($type->help);
+ return '<p>'. filter_xss_admin($type->help) .'</p>';
}
}