summaryrefslogtreecommitdiff
path: root/modules/watchdog.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-12-06 13:23:48 +0000
committerDries Buytaert <dries@buytaert.net>2004-12-06 13:23:48 +0000
commit255e3b11eb3e8650ffa081a4e826113c6ea175b5 (patch)
tree242b8a071c47e9f49190ddcb086c028c5790132a /modules/watchdog.module
parent01d216018f3c8789917ee670b2e27f8b08436426 (diff)
downloadbrdo-255e3b11eb3e8650ffa081a4e826113c6ea175b5.tar.gz
brdo-255e3b11eb3e8650ffa081a4e826113c6ea175b5.tar.bz2
- Fixed colspan bug reported by Steven.
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r--modules/watchdog.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module
index 6f93c71a8..8d0a4c42f 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -109,12 +109,12 @@ function watchdog_overview() {
}
if (!$rows) {
- $rows[] = array(array('data' => t('No log messages available.'), 'colspan' => '5'));
+ $rows[] = array(array('data' => t('No log messages available.'), 'colspan' => '6'));
}
$pager = theme('pager', NULL, 50, 0, tablesort_pager());
if (!empty($pager)) {
- $rows[] = array(array('data' => $pager, 'colspan' => '5'));
+ $rows[] = array(array('data' => $pager, 'colspan' => '6'));
}
$output = '<div class="container-inline">'. form($form) .'</div>';