diff --git a/modules/tracker.module b/modules/tracker.module
index c58637ba6a75a4207782224019ec943ac6335ce7..26fc8674a75d9c7b0e6b0fcf5215702154bddef2 100644
--- a/modules/tracker.module
+++ b/modules/tracker.module
@@ -1,9 +1,12 @@
 <?php
 // $Id$
 
-function tracker_help() {
-  $output .= "<p>The tracker module is a handy module for displaying the most recent posts.  By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>";
-  return $output;
+function tracker_help($section = "admin/tracker/help") {
+
+  switch ($section) {
+    case "admin/tracker/help":
+     return t("<p>The tracker module is a handy module for displaying the most recent posts.  By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
+  }
 }
 
 function tracker_system($field) {
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index c58637ba6a75a4207782224019ec943ac6335ce7..26fc8674a75d9c7b0e6b0fcf5215702154bddef2 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -1,9 +1,12 @@
 <?php
 // $Id$
 
-function tracker_help() {
-  $output .= "<p>The tracker module is a handy module for displaying the most recent posts.  By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>";
-  return $output;
+function tracker_help($section = "admin/tracker/help") {
+
+  switch ($section) {
+    case "admin/tracker/help":
+     return t("<p>The tracker module is a handy module for displaying the most recent posts.  By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
+  }
 }
 
 function tracker_system($field) {