mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
21 lines
500 B
PHP
21 lines
500 B
PHP
<?PHP // $Id$
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Code fragment to define the module version etc.
|
|
// This fragment is called by /admin/index.php
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2002082000;
|
|
$module->cron = 0;
|
|
|
|
function choice_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
?>
|
|
|