mirror of
https://github.com/moodle/moodle.git
synced 2025-02-18 23:05:30 +01:00
1/ email notification when course requested 2/ course request capability so that we can limit who can request new course 3/ list of my pending course requests on the request form Implemented in 1.9 by Petr Skoda, and reviewed and merged to HEAD by me.
15 lines
466 B
PHP
15 lines
466 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 = 2008121000; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 dev (Build: 20081210)'; // Human-friendly version name
|
|
|
|
?>
|