diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 883d119455f5710ca0313246728824e5c04ea9f6..806bc7b9796f458831ca7f0a1bb54c06d4e337dc 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -85,11 +85,6 @@ function watchdog_user($op, &$edit, &$user) { } function watchdog_form_overview() { - $icons = array(WATCHDOG_NOTICE => '', - WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')), - WATCHDOG_ERROR => theme('image', 'misc/watchdog-error.png', t('error'), t('error'))); - $classes = array(WATCHDOG_NOTICE => 'watchdog-notice', WATCHDOG_WARNING => 'watchdog-warning', WATCHDOG_ERROR => 'watchdog-error'); - $names['all'] = t('all messages'); foreach (_watchdog_get_message_types() as $type) { $names[$type] = t('!type messages', array('!type' => t($type))); @@ -114,6 +109,11 @@ function watchdog_form_overview() { * Menu callback; displays a listing of log messages. */ function watchdog_overview() { + $icons = array(WATCHDOG_NOTICE => '', + WATCHDOG_WARNING => theme('image', 'misc/watchdog-warning.png', t('warning'), t('warning')), + WATCHDOG_ERROR => theme('image', 'misc/watchdog-error.png', t('error'), t('error'))); + $classes = array(WATCHDOG_NOTICE => 'watchdog-notice', WATCHDOG_WARNING => 'watchdog-warning', WATCHDOG_ERROR => 'watchdog-error'); + $output = drupal_get_form('watchdog_form_overview'); $header = array(