mirror of
https://github.com/moodle/moodle.git
synced 2025-01-23 16:48:36 +01:00
15 lines
211 B
PHP
15 lines
211 B
PHP
|
<?PHP
|
||
|
|
||
|
function glossary_upgrade($oldversion) {
|
||
|
/// This function does anything necessary to upgrade
|
||
|
/// older versions to match current functionality
|
||
|
|
||
|
global $CFG;
|
||
|
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
|