=== modified file 'modules/system/admin.css'
--- modules/system/admin.css	2006-11-27 02:56:36 +0000
+++ modules/system/admin.css	2006-11-27 02:59:22 +0000
@@ -84,6 +84,13 @@ table.system-status-report tr.ok th {
 }
 
 /**
+ * Formatting for help links on admin/by-module
+ */
+ .help-link {
+  float: right;
+}
+
+/**
  * Formatting for theme configuration
  */
 .theme-settings-left {
@@ -96,4 +103,4 @@ table.system-status-report tr.ok th {
 }
 .theme-settings-bottom {
   clear: both;
-}
\ No newline at end of file
+}

=== modified file 'modules/system/system.module'
--- modules/system/system.module	2006-11-27 02:56:36 +0000
+++ modules/system/system.module	2006-11-27 03:32:06 +0000
@@ -2239,15 +2239,15 @@ function system_admin_by_module() {
     }
 
     $admin_tasks = system_get_module_admin_tasks($module);
-    // Check for help links.
-    if (module_invoke($module, 'help', "admin/help#$module")) {
-      $admin_tasks[100] = l(t('Get help'), "admin/help/$module");
-    }
-
-    // Sort
-    ksort($admin_tasks);
+    // Check to see if module has a help page.
+    $help = module_invoke($module, 'help', "admin/help#$module") ? "admin/help/$module" : FALSE;
 
-    $menu_items[$file->info['name']] = array($file->info['description'], $admin_tasks);
+    // Only display a section if there are any available tasks.
+    if (count($admin_tasks)) {
+      // Sort
+      ksort($admin_tasks);
+      $menu_items[$file->info['name']] = array($file->info['description'], $admin_tasks, $help);
+    }
   }
   return theme('system_admin_by_module', $menu_items);
 }
@@ -2286,15 +2286,19 @@ function theme_system_admin_by_module($m
 
   // Iterate over all modules
   foreach ($menu_items as $module => $block) {
-    list($description, $items) = $block;
+    list($description, $items, $help) = $block;
 
     // Output links
     if (count($items)) {
       $block = array();
-      $block['title'] = $module;
+      $block['title'] = t('@module', array('@module' => $module));
       $block['content'] = theme('item_list', $items);
       $block['description'] = $description;
 
+      if ($help) {
+        $block['description'] .= l(t('get help'), $help, array('class' => 'help-link'));
+      }
+
       if ($block_output = theme('admin_block', $block)) {
         if (!$block['position']) {
           // Perform automatic striping.

