mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00

In my testing environment, I am able to enrol and unenrol both 2.0 <-> 2.0 and 1.9 <-> 2.0 peers. The changes are pretty significant, though, including DB schema change.
13 lines
470 B
PHP
13 lines
470 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 = 2010071701; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 Preview 4+ (Build: 20100717)'; // Human-friendly version name
|
|
|