diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-10-08 12:21:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-10-08 12:21:47 +0000 |
commit | 7863be5e82ccfbaa4aa9bac2343ad9e560130b44 (patch) | |
tree | 4af8979d342a4ce8244fc005162f6d313692ab3d /modules/watchdog/watchdog.module | |
parent | 27625fcf836b321f2999569d7d9508735388094e (diff) | |
download | brdo-7863be5e82ccfbaa4aa9bac2343ad9e560130b44.tar.gz brdo-7863be5e82ccfbaa4aa9bac2343ad9e560130b44.tar.bz2 |
- Patch #33433 by chx: fixed a number of form API problems.
* Default form value
* Leftover debug function in form.inc
* PHP5 issue with comment date (I got this patch from another issue)
* Validation error fix (was calling legacy form validate)
* Lots o' warnings on comment preview
* Filter tips plus argument (gremlins. I swear this was not there.)
* Message to clear what's going on with system settings
* Non-freetagging taxonomies fixed
Diffstat (limited to 'modules/watchdog/watchdog.module')
-rw-r--r-- | modules/watchdog/watchdog.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 6e2066cdd..22c1ad0f3 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/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()); |