mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 06:39:04 +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;
|
|
|
|
}
|
|
|
|
?>
|