mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 01:48:45 +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;
|
||
|
}
|
||
|
|
||
|
|
||
|
?>
|
||
|
|