From: tjhunt Date: Fri, 25 Jul 2008 16:18:28 +0000 (+0000) Subject: MDL-15818 - correction, undo a change to the admin-reports bit. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=40ad295c25cb10e4c364295be3008a1c06662190;p=moodle.git MDL-15818 - correction, undo a change to the admin-reports bit. Jamie, if you see this, please review this change. --- diff --git a/admin/cron.php b/admin/cron.php index 28fa5ff0aa..f42273da81 100644 --- a/admin/cron.php +++ b/admin/cron.php @@ -195,7 +195,7 @@ $cronfile = $CFG->dirroot.'/'.$CFG->admin.'/report/'.$report.'/cron.php'; if (file_exists($cronfile)) { require_once($cronfile); - $cronfunction = 'quiz_report_'.$report.'_cron'; + $cronfunction = 'report_'.$report.'_cron'; mtrace('Processing cron function for '.$report.'...', ''); $pre_dbqueries = null; $pre_dbqueries = $DB->perf_get_queries();