diff options
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r-- | modules/watchdog.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module index 6e2066cdd..22c1ad0f3 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -89,6 +89,7 @@ function watchdog_overview() { ); $form['submit'] = array(type => 'submit', value =>t('Filter')); + $output = drupal_get_form('watchdog_form_overview', $form); $header = array( ' ', @@ -122,7 +123,7 @@ function watchdog_overview() { $rows[] = array(array('data' => t('No log messages available.'), 'colspan' => '7')); } - $output = drupal_get_form('watchdog_form_overview', $form); + $output .= theme('table', $header, $rows); $output .= theme('pager', NULL, 50, 0, tablesort_pager()); |