moodle/mod/scorm/version.php
fmarier 9858605e59 Add missing fields when upgrading/installing on Postgres
mod/exercise, mod/scorm and question/type/rqp
MDL-12023
2007-11-09 01:25:28 +00:00

18 lines
772 B
PHP
Executable File

<?php // $Id$
/////////////////////////////////////////////////////////////////////////////////
/// Code fragment to define the version of scorm
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
/////////////////////////////////////////////////////////////////////////////////
// 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 = 2007110500; // The (date) version of this module
$module->requires = 2007101000; // The version of Moodle that is required
$module->cron = 300; // How often should cron check this module (seconds)?
?>