moodle/version.php
Eloy Lafuente 5701efe8da MDL-20834 new cap moodle/backup:userinfo - controls who can backupuser
related info. Disabled by default to teachers, oh my! :-( Backported from 19_STABLE
2009-11-18 15:45:33 +00:00

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
?>