mirror of
https://github.com/moodle/moodle.git
synced 2025-02-10 10:41:57 +01:00
If the admin specifies a Policy Agreement (via URL in the config variables) then each user is required to see and agree to that document once before continuing. To get everyone to see it again (on an update, say) one just needs to issue: UPDATE user SET policyagreed = 0
15 lines
487 B
PHP
15 lines
487 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 = 2004112900; // YYYYMMDD = date of first major branch release 1.4
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.5 UNSTABLE DEVELOPMENT'; // Human-friendly version name
|
|
|
|
?>
|