3406acdef9
Navigation has now been re-ordered in accordance with http://docs.moodle.org/en/Development:Navigation_2.0_structure. This has led to several changes in the way in which navigation is generated included API changes, most notably using the navigation_nodes add method now returns the newly added node rather than the key. At the same time the global_navigation_tree block has been renamed to navigation and settings_navigation_tree to settings.
14 lines
463 B
PHP
14 lines
463 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 = 2010041301; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 dev (Build: 20100419)'; // Human-friendly version name
|
|
|