mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 15:45:59 +01:00
16 lines
764 B
PHP
16 lines
764 B
PHP
<?PHP // $Id$
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
/// Code fragment to define the version of hotpot
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
$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)
|
|
$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
|
|
?>
|