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