mirror of
https://github.com/moodle/moodle.git
synced 2025-01-22 08:11:26 +01:00
17 lines
239 B
PHP
17 lines
239 B
PHP
<?PHP // $Id$
|
|
|
|
function quiz_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
if ($oldversion < 2002100300) {
|
|
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|