diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-05-05 16:41:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-05-05 16:41:57 +0000 |
commit | 89f2567961f41887e8cd8d03e56f70b5ba75694a (patch) | |
tree | 45c18b9ed28564e1cae9f92c95a367473655d0cc /modules/system/system.admin.inc | |
parent | 44c4a2b473b2e73f077b37bb249c5354d7af824e (diff) | |
download | brdo-89f2567961f41887e8cd8d03e56f70b5ba75694a.tar.gz brdo-89f2567961f41887e8cd8d03e56f70b5ba75694a.tar.bz2 |
- Patch #783534 by dmitrig01, droplet, Nick Lewis: make Report table better.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 9722664c6..1725598e0 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2470,11 +2470,11 @@ function theme_status_report($variables) { // Output table row(s) if (!empty($requirement['description'])) { - $output .= '<tr class="' . $class . ' merge-down"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>'; + $output .= '<tr class="' . $class . ' merge-down"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>'; $output .= '<tr class="' . $class . ' merge-up"><td colspan="2">' . $requirement['description'] . '</td></tr>'; } else { - $output .= '<tr class="' . $class . '"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>'; + $output .= '<tr class="' . $class . '"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>'; } } } |