mirror of
https://github.com/moodle/moodle.git
synced 2025-01-22 16:18:24 +01:00
12 lines
172 B
PHP
Executable File
12 lines
172 B
PHP
Executable File
<?PHP
|
|
function survey_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
?>
|
|
|