38fb819028
active by default at this time. Related help files are not included in this commit, as they are being revised (see issue 15385) and will be sent in soon.
15 lines
466 B
PHP
15 lines
466 B
PHP
<?php
|
|
|
|
// MOODLE VERSION INFORMATION
|
|
|
|
// 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)
|
|
|
|
$version = 2008063001; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 dev (Build: 20080630)'; // Human-friendly version name
|
|
|
|
?>
|