diff options
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index c92ac2acb..dc14d891c 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2149,7 +2149,7 @@ function theme_system_modules_uninstall($form) { foreach (element_children($form['modules']) as $module) { $rows[] = array( array('data' => drupal_render($form['uninstall'][$module]), 'align' => 'center'), - '<strong>' . drupal_render($form['modules'][$module]['name']) . '</strong>', + '<strong><label for="' . $form['uninstall'][$module]['#id'] . '">' . drupal_render($form['modules'][$module]['name']) . '</label></strong>', array('data' => drupal_render($form['modules'][$module]['description']), 'class' => 'description'), ); } |