mirror of
https://github.com/moodle/moodle.git
synced 2025-01-22 16:18:24 +01:00
14 lines
222 B
PHP
14 lines
222 B
PHP
<?PHP // $Id$
|
|
|
|
function dialogue_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
$result = true;
|
|
return $result;
|
|
}
|
|
|
|
?>
|