mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 02:16:41 +02:00

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.
14 lines
487 B
PHP
14 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 = 2004111200; // YYYYMMDD = date of first major branch release 1.4
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.5 UNSTABLE DEVELOPMENT'; // Human-friendly version name
|
|
|
|
?>
|