e50ce569d9
Two new preferences: averagesdecimalpoints and rangesdecimalpoints Two new constants: GRADE_REPORT_PREFERENCE_INHERIT and GRADE_REPORT_PREFERENCE_DEFAULT with string values removed GRADE_REPORT_GRADE_DISPLAY_TYPE_INHERIT in favour of the above Added a number of language strings.
15 lines
434 B
PHP
15 lines
434 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 = 2007071702; // YYYYMMDD = date
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.9 dev'; // Human-friendly version name
|
|
|
|
?>
|