mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 18:36:42 +02:00
11 lines
207 B
PHP
Executable file
11 lines
207 B
PHP
Executable file
<?PHP
|
|
|
|
function attendance_upgrade($oldversion) {
|
|
/// This function does anything necessary to upgrade
|
|
/// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
return true;
|
|
}
|
|
|
|
?>
|