2005-02-16 10:40:48 +00:00
|
|
|
<?php
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2004-09-27 13:50:55 +00:00
|
|
|
// MOODLE VERSION INFORMATION
|
2002-09-06 14:06:48 +00:00
|
|
|
|
2005-02-16 10:40:48 +00:00
|
|
|
// This file defines the current version of the core Moodle code being used.
|
|
|
|
// This is compared against the values stored in the database to determine
|
2004-09-27 13:50:55 +00:00
|
|
|
// whether upgrades should be performed (see lib/db/*.php)
|
|
|
|
|
2009-01-19 08:03:55 +00:00
|
|
|
$version = 2009011900; // YYYYMMDD = date of the last version bump
|
2008-03-05 05:51:01 +00:00
|
|
|
// XX = daily increments
|
2004-09-27 13:50:55 +00:00
|
|
|
|
2009-01-19 23:53:31 +00:00
|
|
|
$release = '2.0 dev (Build: 20090120)'; // Human-friendly version name
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2007-04-02 06:21:01 +00:00
|
|
|
?>
|