From: toyomoyo Date: Fri, 30 Nov 2007 02:00:04 +0000 (+0000) Subject: adding support for customized cron X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=ba9b44f97643cb3c02a56367dde004baa76fc54f;p=moodle.git adding support for customized cron --- diff --git a/admin/cron.php b/admin/cron.php index ffff0a8238..ffbbd9b9d0 100644 --- a/admin/cron.php +++ b/admin/cron.php @@ -511,6 +511,15 @@ } } } + + // run any customized cronjobs, if any + // looking for functions in lib/local/cron.php + if (file_exists($CFG->libdir.'/local/cron.php')) { + mtrace('Processing customized cron script ...', ''); + include_once($CFG->libdir.'/local/cron.php'); + mtrace('done.'); + } + //Unset session variables and destroy it @session_unset();