62e76c6766
This is an initial implementation that is now at a working state, but with a few things left to do. It seemed like a good idea to commit it before leaving work on Friday night.
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 = 2008082702; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 dev (Build: 20080829)'; // Human-friendly version name
|
|
|
|
?>
|