mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
13 lines
189 B
PHP
Executable file
13 lines
189 B
PHP
Executable file
<?PHP
|
|
|
|
function chat_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
return true;
|
|
}
|
|
|
|
|
|
?>
|
|
|