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)
|
|
|
|
|
2007-06-05 09:28:15 +00:00
|
|
|
$version = 2007060502; // YYYYMMDD = date
|
2004-09-27 13:50:55 +00:00
|
|
|
// XY = increments within a single day
|
|
|
|
|
2007-02-14 08:38:47 +00:00
|
|
|
$release = '1.9 dev'; // Human-friendly version name
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2007-04-02 06:21:01 +00:00
|
|
|
?>
|