9e1889cdae
From: http://git.catalyst.net.nz/gitweb?p=moodle-r2.git;a=commitdiff_plain;h=e27f04c42ba05ee224eafa03549b4b5252ca07f5
16 lines
571 B
PHP
16 lines
571 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 = 2007101508.07; // YYYYMMDD = date of the 1.9 branch (don't change)
|
|
// X = release number 1.9.[0,1,2,3...]
|
|
// Y.YY = micro-increments between releases
|
|
|
|
$release = '1.9 Beta 4 +'; // Human-friendly version name
|
|
|
|
?>
|