mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
5abcfe582d
merge other fixes from Moodle 19 hotpot/lib.php
17 lines
830 B
PHP
17 lines
830 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 = 2007101511; // release date of this version (see note below)
|
|
$module->release = 'v2.4.2'; // human-friendly version name (used in mod/hotpot/lib.php)
|
|
$module->requires = 2007101509; // Requires this Moodle version
|
|
$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
|
|
?>
|