From c0525a7c18100c229a98091660251934a84c9a89 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Fri, 21 Oct 2005 10:50:03 +0000 Subject: - #34757: Remove administer watchdog permission (drumm) --- modules/watchdog.module | 12 +++--------- modules/watchdog/watchdog.module | 12 +++--------- 2 files changed, 6 insertions(+), 18 deletions(-) (limited to 'modules') diff --git a/modules/watchdog.module b/modules/watchdog.module index 1ffd7376c..7531f6c13 100644 --- a/modules/watchdog.module +++ b/modules/watchdog.module @@ -32,21 +32,14 @@ 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(). * @@ -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); diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 1ffd7376c..7531f6c13 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -32,21 +32,14 @@ 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(). * @@ -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); -- cgit v1.2.3