mirror of
https://github.com/moodle/moodle.git
synced 2025-04-16 14:02:32 +02:00
This includes some significant cleanups to the new course categories system. The basic idea is that the categories/course browser is now unified under one system, and admin features related to that have all been moved into the browser (as little icons). I'm much happier with this as a foundation that can scale and be built upon. Still to go: - searching - paging - polishing Also in here are a lot of little cleanups around the place, such as the initial setup process.
14 lines
381 B
PHP
14 lines
381 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 = 2003080700; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$release = "1.1 development"; // User-friendly version number
|
|
|
|
|
|
?>
|