mirror of
https://github.com/moodle/moodle.git
synced 2025-03-09 10:19:56 +01:00
13 lines
183 B
PHP
13 lines
183 B
PHP
<?PHP // $Id$
|
|
|
|
function resource_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
?>
|
|
|