summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-04-30 06:39:26 +0000
committerDries Buytaert <dries@buytaert.net>2008-04-30 06:39:26 +0000
commit420ee6cbcaa82249cf16eb18da503b1956dd27c0 (patch)
tree5c2521d46208d288a5cdb6937b0d7d18fb98b759
parenta2d8a12903a4327dd650aebf452a90ff3c992090 (diff)
downloadbrdo-420ee6cbcaa82249cf16eb18da503b1956dd27c0.tar.gz
brdo-420ee6cbcaa82249cf16eb18da503b1956dd27c0.tar.bz2
- Patch #246298 by boombatower: added missing <label> to module names on uninstall page. Improves consistency with the module install page.
-rw-r--r--modules/system/system.admin.inc2
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'),
);
}