2006-08-08 22:09:55 +00:00
|
|
|
<?php // $Id$
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Code fragment to define the version of scorm
|
|
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-09-27 16:45:40 +00:00
|
|
|
|
|
|
|
// NOTE The version below was accidentally set a month into the future! We need to
|
|
|
|
// catch up now, so until 27th October please only increment in very tiny steps
|
|
|
|
// in HEAD, until we get past that date..
|
|
|
|
|
|
|
|
$module->version = 2006102702; // The (date) version of this module
|
2006-08-08 22:09:55 +00:00
|
|
|
$module->requires = 2006080900; // The version of Moodle that is required
|
|
|
|
$module->cron = 0; // How often should cron check this module (seconds)?
|
|
|
|
|
|
|
|
?>
|