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-08-24 05:39:37 +00:00
|
|
|
$version = 2007082400; // YYYYMMDD = date
|
2007-07-16 13:23:13 +00:00
|
|
|
// XY = increments within a single day
|
2004-09-27 13:50:55 +00:00
|
|
|
|
2007-08-16 06:50:23 +00:00
|
|
|
$release = '1.9 Beta +'; // Human-friendly version name
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2007-04-02 06:21:01 +00:00
|
|
|
?>
|