2001-03-10 11:07:52 +00:00
|
|
|
<?php
|
2001-10-20 18:57:09 +00:00
|
|
|
// $Id$
|
2000-12-10 15:44:23 +00:00
|
|
|
|
2003-11-18 19:44:36 +00:00
|
|
|
include_once "includes/bootstrap.inc";
|
2001-02-04 22:09:38 +00:00
|
|
|
include_once "includes/common.inc";
|
2000-12-23 15:13:34 +00:00
|
|
|
|
2001-07-16 14:43:56 +00:00
|
|
|
/*
|
|
|
|
** If not in 'safe mode', increase the maximum execution time:
|
|
|
|
*/
|
|
|
|
|
2003-12-29 11:25:02 +00:00
|
|
|
if (!ini_get("safe_mode")) {
|
2003-04-21 12:23:16 +00:00
|
|
|
set_time_limit(240);
|
2001-07-16 14:43:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Iterate through the modules calling their cron handlers (if any):
|
|
|
|
*/
|
|
|
|
|
2003-09-14 18:33:16 +00:00
|
|
|
module_invoke_all("cron");
|
2001-11-01 11:00:51 +00:00
|
|
|
|
2004-01-02 16:28:45 +00:00
|
|
|
watchdog("regular", "cron run completed");
|
2003-04-21 12:23:16 +00:00
|
|
|
?>
|