summaryrefslogtreecommitdiff
path: root/cron.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-02 16:28:45 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-02 16:28:45 +0000
commitb63747fd30b575434fe5053724fe5e63b1c88df5 (patch)
treeed4eb97b48d170b9055f0cb1d3b0dfea76474e0c /cron.php
parentf6082cda98eab9732801e815a05aad1017446b12 (diff)
downloadbrdo-b63747fd30b575434fe5053724fe5e63b1c88df5.tar.gz
brdo-b63747fd30b575434fe5053724fe5e63b1c88df5.tar.bz2
- Removed the hard-coded list of watchdog types. The list is compiled
dynamically and can be extended through the watchdog() call. (Chris could use it to move the cron message to their own category.)
Diffstat (limited to 'cron.php')
-rw-r--r--cron.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron.php b/cron.php
index f7c9d6adb..70aee47fd 100644
--- a/cron.php
+++ b/cron.php
@@ -18,5 +18,5 @@ if (!ini_get("safe_mode")) {
module_invoke_all("cron");
-watchdog("message", "cron run completed");
+watchdog("regular", "cron run completed");
?>