moodle/version.php

14 lines
382 B
PHP
Raw Normal View History

<?PHP //$Id$
// This file defines the current version of the
// Moodle code that is being used. This can be
// compared against the values stored in the
// database to determine whether upgrades should
// be performed (see lib/db/*.php)
2004-01-08 12:37:37 +00:00
$version = 2004010800; // The current version is a date (YYYYMMDDXX)
2003-09-13 11:59:41 +00:00
$release = "1.2 development"; // User-friendly version number
2003-05-19 04:55:11 +00:00
?>