2006-01-25 07:31:37 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Code fragment to define the version of hotpot
|
|
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
2006-05-02 05:18:01 +00:00
|
|
|
$module->version = 2006050200; // release date of this version (see note below)
|
|
|
|
$module->release = 'v2.1.19'; // human-friendly version name (used in mod/hotpot/lib.php)
|
2006-01-25 07:31:37 +00:00
|
|
|
$module->cron = 0; // period for cron to check this module (secs)
|
|
|
|
// interpretation of YYYYMMDDXY version numbers
|
|
|
|
// YYYY : year
|
|
|
|
// MM : month
|
|
|
|
// DD : day
|
|
|
|
// X : point release version 1,2,3 etc
|
|
|
|
// Y : increment between point releases
|
|
|
|
?>
|