mirror of
https://github.com/moodle/moodle.git
synced 2025-02-01 21:54:04 +01:00
c8e0b57900
NEW: The code now supports dynamically plugging your own Pages and block position identifiers into Moodle without messing with the main libraries at all. UPDATE: Many functions in blocklib now use pass-by-reference for speed. UPDATE: Class MoodlePage has been made more presentable and robust.
9 lines
338 B
PHP
9 lines
338 B
PHP
<?PHP //$Id$
|
|
// This file defines the current version of the
|
|
// blocks code that is being used. This can be
|
|
// compared against the values stored in the
|
|
// database (blocks_version) to determine whether upgrades should
|
|
// be performed (see db/backup_*.php)
|
|
|
|
$blocks_version = 2004111200; // The current version is a date (YYYYMMDDXX)
|