2004-09-27 13:50:55 +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
|
|
|
|
2004-09-27 13:50:55 +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
|
|
|
|
// whether upgrades should be performed (see lib/db/*.php)
|
|
|
|
|
2004-11-02 12:53:32 +00:00
|
|
|
$version = 2004110200; // YYYYMMDD = date of first major branch release 1.4
|
2004-09-27 13:50:55 +00:00
|
|
|
// XY = increments within a single day
|
|
|
|
|
|
|
|
$release = '1.5 UNSTABLE DEVELOPMENT'; // Human-friendly version name
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2003-05-23 05:32:40 +00:00
|
|
|
?>
|