diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-06 21:37:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-06 21:37:11 +0000 |
commit | aa38097c07def6d31481dfeeb2bcba520d323b2d (patch) | |
tree | d3c3d07dbd2886af2d38b1a4d175be32b4d0219c /modules/watchdog/watchdog.module | |
parent | 47ba929ce28e5bbc1d1aa3961da8bb08a8cb11f3 (diff) | |
download | brdo-aa38097c07def6d31481dfeeb2bcba520d323b2d.tar.gz brdo-aa38097c07def6d31481dfeeb2bcba520d323b2d.tar.bz2 |
- Dropped check_input(); use check_query() instead.
- Made the statistics module use referer_uri() for security's sake.
Diffstat (limited to 'modules/watchdog/watchdog.module')
-rw-r--r-- | modules/watchdog/watchdog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 601363e0e..fec7bd867 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -96,7 +96,7 @@ function watchdog_admin() { watchdog_help(); break; case "view": - print watchdog_view(check_input(arg(3))); + print watchdog_view(arg(3)); break; default: print watchdog_overview(arg(2)); |