mirror of
https://github.com/moodle/moodle.git
synced 2025-02-10 10:41:57 +01:00
23 lines
207 B
PHP
Executable File
23 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|