=== modified file 'modules/system/admin.css'
--- modules/system/admin.css	2006-10-14 14:15:40 +0000
+++ modules/system/admin.css	2006-11-20 17:12:03 +0000
@@ -84,6 +84,13 @@ table.system-status-report tr.ok th {
 }
 
 /**
+ * Formatting for help links
+ */
+ .theme-help-link {
+  float: right;
+}
+
+/**
  * Formatting for theme configuration
  */
 .theme-settings-left {

=== modified file 'modules/system/system.module'
--- modules/system/system.module	2006-11-20 16:47:26 +0000
+++ modules/system/system.module	2006-11-20 17:12:12 +0000
@@ -33,7 +33,7 @@ function system_help($section) {
     case 'admin':
       return t('<p>Welcome to the administration section. Here you may control how your site functions.</p>');
     case 'admin/by-module':
-      return t('<p>This page shows you all available administration tasks for each module.</p>');
+      return '<p>'. t('This page shows all available administration tasks for each module.') .'</p>';
     case 'admin/settings/page-caching':
       return t('Enabling the cache will offer a sufficient performance boost. Drupal can store and send compressed cached pages requested by "anonymous" users. By caching a web page, Drupal does not have to create the page each time someone wants to view it.');
     case 'admin/build/themes':
@@ -2245,15 +2245,15 @@ function system_admin_by_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);
 }
@@ -2268,12 +2268,17 @@ 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;
+      if ($help) {
+        $block['title'] = t('@module <a class="theme-help-link" href="@help">help</a>', array('@module' => $module, '@help' => $help));
+      }
+      else {
+        $block['title'] = t('@module', array('@module' => $module));
+      }
       $block['content'] = theme('item_list', $items);
       $block['description'] = $description;
 

