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-01-04 12:35:47 +00:00
|
|
|
$version = 2007010404; // YYYYMMDD = date
|
2004-09-27 13:50:55 +00:00
|
|
|
// XY = increments within a single day
|
|
|
|
|
2006-10-10 08:31:44 +00:00
|
|
|
$release = '1.8 dev'; // Human-friendly version name
|
2002-07-27 13:09:08 +00:00
|
|
|
|
2006-05-08 16:40:44 +00:00
|
|
|
?>
|