Index: modules/watchdog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/watchdog.module,v retrieving revision 1.130 diff -u -F^f -r1.130 watchdog.module --- modules/watchdog.module 11 Oct 2005 19:44:35 -0000 1.130 +++ modules/watchdog.module 21 Oct 2005 10:21:16 -0000 @@ -32,22 +32,15 @@ function watchdog_menu($may_cache) { if ($may_cache) { $items[] = array('path' => 'admin/logs', 'title' => t('logs'), - 'callback' => 'watchdog_overview', 'access' => user_access('administer watchdog')); + 'callback' => 'watchdog_overview'); $items[] = array('path' => 'admin/logs/event', 'title' => t('details'), - 'callback' => 'watchdog_event', 'access' => user_access('administer watchdog'), + 'callback' => 'watchdog_event', 'type' => MENU_CALLBACK); } return $items; } /** - * Implementation of hook_perm(). - */ -function watchdog_perm() { - return array('administer watchdog'); -} - -/** * Implementation of hook_cron(). * * Remove expired log messages and flood control events. @@ -87,6 +80,7 @@ function watchdog_overview() { '#options' => $names, '#default_value' => $_SESSION['watchdog_overview_filter'] ); + $form['#action'] = 'admin/logs'; $form['submit'] = array('#type' => 'submit', '#value' =>t('Filter')); $output = drupal_get_form('watchdog_form_overview', $form);