mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
and disable any incompatible blocks. Print a notice too. These blocks won't ever be displayed because they are hidden, and the admin cannot even unhide them until they are fixed because the blocks admin page won't list them (it will emit a notice instead). Case closed.
15 lines
435 B
PHP
15 lines
435 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 = 2005043000; // YYYYMMDD = date
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.5 ALPHA'; // Human-friendly version name
|
|
|
|
?>
|