mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
18 lines
729 B
PHP
18 lines
729 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 = 2007021599.12; // YYYYMMDD = date of the 1.8 branch (don't change)
|
|
// 99 = we reached a .10 release! (don't change)
|
|
// .XX = release number 1.8.[10,11,12,..]
|
|
|
|
// Do not use more than two decimal points as we have
|
|
// hit the float limit
|
|
|
|
$release = '1.8.10+ (Build: 20091117)'; // Human-friendly version name
|
|
|
|
?>
|