From 75c5ec2b3937a4939af64e6e4226ea628dba9754 Mon Sep 17 00:00:00 2001
From: Neil Drumm <drumm@3064.no-reply.drupal.org>
Date: Fri, 8 Sep 2006 23:07:25 +0000
Subject: [PATCH] #82861 by RobRoy. Move watchdog overview variables to the
 right place.

---
 modules/watchdog/watchdog.module | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 883d119455f5..806bc7b9796f 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(
-- 
GitLab