mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 20:42:22 +02:00
The number of submissions in the Group average and Course average calculations should be shown in brackets. (submissions) should be added after the Group average and Course average labels. Solution: new grader report preference (Display number of grades in average cells).
15 lines
437 B
PHP
15 lines
437 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 = 2007091400; // YYYYMMDD = date
|
|
// XY = increments within a single day
|
|
|
|
$release = '1.9 Beta +'; // Human-friendly version name
|
|
|
|
?>
|