Index: paging.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/paging/paging.module,v
retrieving revision 1.15.2.1
diff -u -p -r1.15.2.1 paging.module
--- paging.module	12 Dec 2006 02:35:42 -0000	1.15.2.1
+++ paging.module	18 Apr 2007 04:30:33 -0000
@@ -9,14 +9,14 @@ define('PAGING_SEPARATOR', variable_get(
 function paging_help($section) {
   switch ($section) {
     case 'admin/help#paging':
-      return t("<p>Break long pages into smaller ones by means of " .
-               "a \"page\" tag:</p>\n" .
-               "<pre>\n" .
-               "first page here.\n" .
-               "%separator\n" .
-               "second page here.\n" .
-               "%separator\n" .
-               "more pages here.\n", array('%separator' => PAGING_SEPARATOR));
+      return t('
+<p>Break long pages into smaller ones by means of a "page" tag:</p><pre>
+First page here.
+%separator
+Second page here.
+%separator
+More pages here.</pre>
+      ', array('%separator' => PAGING_SEPARATOR));
   }
 }
 
@@ -156,7 +156,7 @@ function paging_filter($in_op, $in_delta
     case 'list':
       return array(t("Paging"));
     case 'description':
-      return t('Allows content to be broken up into pages, using the %separator tag, configurable ' . l('here', 'admin/settings/paging') . '.', array('%separator' => PAGING_SEPARATOR));
+      return t('Allows content to be split into pages, using the %separator tag, configurable <a href="!url">here</a>.', array('%separator' => PAGING_SEPARATOR, '!url' => url('admin/settings/paging')));
 
     // the filter gets called before the nodeapi 'view' so,
     // add a comment to the body to inform the nodapi to apply the filter
