moodle/version.php

14 lines
372 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)
2003-09-11 14:02:29 +00:00
$version = 2003091111; // The current version is a date (YYYYMMDDXX)
$release = "1.1.1"; // User-friendly version number
2003-05-19 04:55:11 +00:00
?>