mirror of
https://github.com/moodle/moodle.git
synced 2025-01-23 00:28:57 +01:00
14 lines
188 B
PHP
Executable File
14 lines
188 B
PHP
Executable File
<?PHP
|
|
|
|
function forum_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
?>
|