mirror of
https://github.com/moodle/moodle.git
synced 2025-03-09 10:19:56 +01:00
21 lines
426 B
PHP
21 lines
426 B
PHP
<?php // $Id$
|
|
|
|
function xmldb_quizreport_statistics_upgrade($oldversion=0) {
|
|
|
|
global $DB;
|
|
|
|
$dbman = $DB->get_manager();
|
|
|
|
$result = true;
|
|
|
|
//===== 1.9.0 upgrade line ======//
|
|
|
|
if ($result && $oldversion < 2008072401) {
|
|
//register cron to run every 5 hours.
|
|
$result = $result && $DB->set_field('quiz_report', 'cron', HOURSECS*5, array('name'=>'statistics'));
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
?>
|