Index: modules/drupal/drupal.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/drupal/drupal.module,v
retrieving revision 1.136
diff -u -p -r1.136 drupal.module
--- modules/drupal/drupal.module	26 Nov 2006 02:20:00 -0000	1.136
+++ modules/drupal/drupal.module	5 Dec 2006 22:39:18 -0000
@@ -22,7 +22,7 @@ function drupal_help($section) {
 </ul>
 ');
       $output .= '<p>'. t('The Drupal module administration page allows you to set the xml-rpc server page and other related options.') .'</p>';
-      $output .= '<p>'. t('If you maintain a directory of sites, you can list them on a page using the <code>drupal_client_page()</code> function. Sample instructions:
+      $output .= t('<p>If you maintain a directory of sites, you can list them on a page using the <code>drupal_client_page()</code> function. Sample instructions: </p>
 <ul>
   <li>Enable the page module. Select create content &gt;&gt; page.</li>
   <li>For input format, select PHP code.</li>
@@ -33,7 +33,7 @@ print drupal_client_page();
 ?&gt;
 </pre>
   <li>Save the page.</li>
-</ul>') . '</p>';
+</ul>');
 
       $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@drupal">Drupal page</a>.', array('@drupal' => 'http://drupal.org/handbook/modules/drupal/')) .'</p>';
       return $output;
Index: modules/filter/filter.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v
retrieving revision 1.152
diff -u -p -r1.152 filter.module
--- modules/filter/filter.module	26 Nov 2006 23:01:42 -0000	1.152
+++ modules/filter/filter.module	5 Dec 2006 22:39:18 -0000
@@ -38,8 +38,7 @@ function filter_help($section) {
 <p>If you notice some filters are causing conflicts in the output, you can <a href="@rearrange">rearrange them</a>.</p>', array('@rearrange' => url('admin/settings/filters/'. arg(3) .'/order')));
 
     case 'admin/settings/filters/'. arg(3) .'/configure':
-      return t('
-<p>If you cannot find the settings for a certain filter, make sure you have enabled it on the <a href="@url">view tab</a> first.</p>', array('@url' => url('admin/settings/filters/'. arg(3))));
+      return '<p>'. t('If you cannot find the settings for a certain filter, make sure you have enabled it on the <a href="@url">view tab</a> first.', array('@url' => url('admin/settings/filters/'. arg(3)))) .'</p>';
 
     case 'admin/settings/filters/'. arg(3) .'/order':
       return t('
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.743
diff -u -p -r1.743 node.module
--- modules/node/node.module	5 Dec 2006 05:55:04 -0000	1.743
+++ modules/node/node.module	5 Dec 2006 22:39:20 -0000
@@ -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>';
   }
 }
 
Index: modules/search/search.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/search/search.module,v
retrieving revision 1.204
diff -u -p -r1.204 search.module
--- modules/search/search.module	1 Dec 2006 22:47:53 -0000	1.204
+++ modules/search/search.module	5 Dec 2006 22:39:20 -0000
@@ -101,9 +101,7 @@ function search_help($section) {
       $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@search">Search page</a>.', array('@search' => 'http://drupal.org/handbook/modules/search/')) .'</p>';
       return $output;
     case 'admin/settings/search':
-      return t('
-<p>The search engine works by maintaining an index of the words in your site\'s content. You can adjust the settings below to tweak the indexing behaviour. Note that the search requires cron to be set up correctly.</p>
-');
+      return '<p>'. t('The search engine works by maintaining an index of the words in your site\'s content. You can adjust the settings below to tweak the indexing behaviour. Note that the search requires cron to be set up correctly.') .'</p>';
     case 'search#noresults':
       return t('<ul>
 <li>Check if your spelling is correct.</li>
