Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.161
diff -u -p -r1.161 system.admin.inc
--- modules/system/system.admin.inc	16 Jul 2009 10:44:20 -0000	1.161
+++ modules/system/system.admin.inc	18 Jul 2009 08:24:21 -0000
@@ -719,9 +719,10 @@ function _system_modules_build_row($info
   if ($compatible) {
     $form['enable'] = array(
       '#type' => 'checkbox',
-      '#title' => t('Enable'),
+      '#title' => t($info['name']),
       '#default_value' => $extra['enabled'],
     );
+
     if ($extra['disabled']) {
       $form['enable']['#disabled'] = TRUE;
     }
@@ -2043,11 +2044,7 @@ function theme_system_modules_fieldset($
     $row = array();
     unset($module['enable']['#title']);
     $row[] = array('class' => 'checkbox', 'data' => drupal_render($module['enable']));
-    $label = '<label';
-    if (isset($module['enable']['#id'])) {
-      $label .= ' for="' . $module['enable']['#id'] . '"';
-    }
-    $row[] = $label . '><strong>' . drupal_render($module['name']) . '</strong></label>';
+    $row[] = '<strong>' . drupal_render($module['name']) . '</strong>';
     $row[] = drupal_render($module['version']);
     $description = '';
     // If we have help, it becomes the first part
@@ -2109,7 +2106,7 @@ function theme_system_modules_uninstall(
   foreach (element_children($form['modules']) as $module) {
     $rows[] = array(
       array('data' => drupal_render($form['uninstall'][$module]), 'align' => 'center'),
-      '<strong><label for="' . $form['uninstall'][$module]['#id'] . '">' . drupal_render($form['modules'][$module]['name']) . '</label></strong>',
+      '<strong>' . drupal_render($form['modules'][$module]['name']) . '</strong>',
       array('data' => drupal_render($form['modules'][$module]['description']), 'class' => 'description'),
     );
   }
