mirror of
https://github.com/moodle/moodle.git
synced 2025-01-23 00:28:57 +01:00
19 lines
268 B
PHP
19 lines
268 B
PHP
<?PHP
|
|
|
|
function attendance_upgrade($oldversion) {
|
|
/// This function does anything necessary to upgrade
|
|
/// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
if ($oldversion < 2003091001) {
|
|
|
|
# Do something ...
|
|
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|