mirror of
https://github.com/moodle/moodle.git
synced 2025-02-11 03:03:43 +01:00
Code based on the work of Daryl Hawes for the blog module. Thanks, Daryl! Please test the hell out of it as it's sure to have issues that need to be ironed out.
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 = 2004101900; // YYYYMMDD = date of first major branch release 1.4
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.5 UNSTABLE DEVELOPMENT'; // Human-friendly version name
|
|
|
|
?>
|