mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 12:45:04 +01:00
03c7d2dc89
Version bump needed so that the cache is cleared on upgrade. Cached files are now valid PHP files instead of fetching them into string and running eval(). Credit goes to skodak.
14 lines
469 B
PHP
14 lines
469 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 = 2010052400; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 Preview 2 (Build: 20100524)'; // Human-friendly version name
|
|
|