mirror of
https://github.com/moodle/moodle.git
synced 2025-02-02 14:19:07 +01:00
4e11ad4faa
authentication mechanism used to create that user record. Also added code to upgrade existing systems to have entries in that field, and for new users to also have that field defined. This will allow us to later improve the login procedure to be able to handle various types of authentication.
13 lines
374 B
PHP
13 lines
374 B
PHP
<?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)
|
|
|
|
$version = 2004081500; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$release = "1.4 alpha"; // User-friendly version number
|
|
|
|
?>
|