From a5d56dc1cd2f0f0d1aca9c1884dc7e8b9afcf6e9 Mon Sep 17 00:00:00 2001 From: mjollnir_ Date: Mon, 21 Jul 2008 16:04:14 +0000 Subject: [PATCH] MDL-15739: make cron.php actually call events_cron --- admin/cron.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/admin/cron.php b/admin/cron.php index a1ef004569..9cb16df0fa 100644 --- a/admin/cron.php +++ b/admin/cron.php @@ -220,6 +220,11 @@ mtrace('done.'); + mtrace('Starting processing the event queue...'); + events_cron(); + mtrace('done.'); + + /// Run all core cron jobs, but not every time since they aren't too important. /// These don't have a timer to reduce load, so we'll use a random number /// to randomly choose the percentage of times we should run these jobs. -- 2.39.5