mirror of
https://github.com/moodle/moodle.git
synced 2025-02-12 03:26:34 +01:00
d2f308c091
Ouch - I thought I'd checked this in days ago
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;
|
|
}
|
|
|
|
?>
|