mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
ae57b07c06
(http://moodle.org/bugs/bug.php?op=show&bugid=5714) More or less, merged from MOODLE_16_STABLE
15 lines
432 B
PHP
15 lines
432 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 = 2006060400; // YYYYMMDD = date
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.7 dev'; // Human-friendly version name
|
|
|
|
?>
|