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
|
|
|
|
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:
|
|
|
|
*/
|
|
|
|
|
2001-07-18 08:09:46 +00:00
|
|
|
if (!get_cfg_var("safe_mode")) {
|
2001-07-16 14:43:56 +00:00
|
|
|
set_time_limit(180);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Iterate through the modules calling their cron handlers (if any):
|
|
|
|
*/
|
|
|
|
|
|
|
|
foreach (module_list() as $module) {
|
|
|
|
module_invoke($module, "cron");
|
|
|
|
}
|
2001-11-01 11:00:51 +00:00
|
|
|
|
2000-12-23 15:13:34 +00:00
|
|
|
?>
|