diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-09-08 16:33:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-09-08 16:33:02 +0000 |
commit | 6f0e54b037618676af98d7c59f87b16b0745d575 (patch) | |
tree | dd4b4df4d0be79b3d449b291ea75342dc5c9107d /modules/watchdog/watchdog.module | |
parent | 6ce212e4ebeccb43e4e65421816d99c02019b9b7 (diff) | |
download | brdo-6f0e54b037618676af98d7c59f87b16b0745d575.tar.gz brdo-6f0e54b037618676af98d7c59f87b16b0745d575.tar.bz2 |
- Patch #82465 by webchick: renamed variables in hooks for consistency.
Diffstat (limited to 'modules/watchdog/watchdog.module')
-rw-r--r-- | modules/watchdog/watchdog.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index dd91c7931..883d11945 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -192,8 +192,7 @@ function theme_watchdog_form_overview($form) { return '<div class="container-inline">'. drupal_render($form) .'</div>'; } -function watchdog_form_overview_submit($form_id, $form) { - global $form_values; +function watchdog_form_overview_submit($form_id, $form_values) { $_SESSION['watchdog_overview_filter'] = $form_values['filter']; } |