mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
f374fb1006
It's very early (it doesn't actually do anything yet!) but you can define groups and get an idea of how the interface is shaping up. I also wanted to show that I have actually done something on this! :-) From here my plan is to add group support to the modules, one by one (forums first), then go back and clean up some of the central interfaces, graphics etc. Finally, test, test, test and get 1.2 out well before the end of February.
14 lines
382 B
PHP
14 lines
382 B
PHP
<?PHP //$Id$
|
|
// This file defines the current version of the
|
|
// Moodle code that is being used. This can be
|
|
// compared against the values stored in the
|
|
// database to determine whether upgrades should
|
|
// be performed (see lib/db/*.php)
|
|
|
|
$version = 2003122600; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$release = "1.2 development"; // User-friendly version number
|
|
|
|
|
|
?>
|