mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
18 lines
262 B
PHP
18 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;
|
|
}
|
|
|
|
?>
|