mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 09:02:07 +01:00
This can be userd to store "global unique identifier" from external databases like Windows SID or eDirectorys guid . This will keep upcoming user syncronization feature reliable in case of renamed users. Mysql files are untested. php -l mysql.php does not show any syntax errors, so files should work.
13 lines
389 B
PHP
13 lines
389 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 = 2004090300; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$release = "1.5 unstable development"; // User-friendly version number
|
|
|
|
?>
|