0a4b736b9c
* Installation
o Adds a random $CFG->passwordsaltmain to config.php on install
o Changes passwordpolicy default to on
* Upgrade
o If passwordpolicy is off it switches it on
o Checks if passwordsaltmain has been set and if not recommends to the user and all admins to add it, both on the upgrade output and via messaging.
o Forces all admin users to change their password at next login.
* General
o Extends the security overview report to check for passwordmainsalt and recommend if it not set (or weak)
16 lines
582 B
PHP
16 lines
582 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 = 2007101561; // YYYYMMDD = date of the 1.9 branch (don't change)
|
|
// X = release number 1.9.[0,1,2,3,4,5...]
|
|
// Y.YY = micro-increments between releases
|
|
|
|
$release = '1.9.6+ (Build: 20091117)'; // Human-friendly version name
|
|
|
|
?>
|