From 22d317e5c476cc2a05a067d246c9a4772ed92d79 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 11 Dec 2006 16:57:42 +0000 Subject: - Patch #101562 by dvessel:

-tag clean ups. --- modules/node/node.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/node') 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 '

'. 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.') .'

'; case 'admin/content/types/add': - return '

'. 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 '

'. 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.') .'

'; } 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 '

'. t('The revisions let you track differences between multiple versions of a post.') .'

'; } if (arg(0) == 'node' && arg(1) == 'add' && $type = arg(2)) { $type = node_get_types('type', arg(2)); - return filter_xss_admin($type->help); + return '

'. filter_xss_admin($type->help) .'

'; } } -- cgit v1.2.3