mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
15 lines
450 B
PHP
15 lines
450 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 = 2005033100; // YYYYMMDD = date
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.5 UNSTABLE DEVELOPMENT'; // Human-friendly version name
|
|
|
|
?>
|