summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc9
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index aca310a24..887bd92ba 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1899,9 +1899,10 @@ function theme_system_modules($form) {
}
// Individual table headers.
- $header = array(t('Enabled'));
+ $header = array();
+ $header[] = array('data' => t('Enabled'), 'class' => 'checkbox');
if (module_exists('throttle')) {
- $header[] = t('Throttle');
+ $header[] = array('data' => t('Throttle'), 'class' => 'checkbox');
}
$header[] = t('Name');
$header[] = t('Version');
@@ -1941,9 +1942,9 @@ function theme_system_modules($form) {
else {
$status = drupal_render($form['status'][$key]);
}
- $row[] = array('data' => $status, 'align' => 'center');
+ $row[] = array('data' => $status, 'class' => 'checkbox');
if (module_exists('throttle')) {
- $row[] = array('data' => drupal_render($form['throttle'][$key]), 'align' => 'center');
+ $row[] = array('data' => drupal_render($form['throttle'][$key]), 'class' => 'checkbox');
}
$row[] = '<strong>'. drupal_render($form['name'][$key]) .'</strong>';
$row[] = drupal_render($form['version'][$key]);