mirror of
https://github.com/moodle/moodle.git
synced 2025-03-01 14:32:48 +01:00
18 lines
318 B
PHP
Executable File
18 lines
318 B
PHP
Executable File
<?php
|
|
|
|
function quiz_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
if ($oldversion < 2004042501) {
|
|
include_once("$CFG->dirroot/mod/quiz/lib.php");
|
|
quiz_refresh_events();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|