mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 12:45:04 +01:00
Merge branch 'wip-MDL-46576-master-upgrade-fix' of https://github.com/abgreeve/moodle
This commit is contained in:
commit
fd93980a1c
@ -3918,6 +3918,9 @@ function xmldb_main_upgrade($oldversion) {
|
||||
|
||||
foreach ($courses as $course) {
|
||||
set_config('show_sumofgrades_upgrade_' . $course->courseid, 1);
|
||||
// Set each of the grade items to needing an update so that when the user visits the grade reports the
|
||||
// figures will be updated.
|
||||
$DB->set_field('grade_items', 'needsupdate', 1, array('courseid' => $course->courseid));
|
||||
}
|
||||
|
||||
set_config('grades_sumofgrades_upgrade_flagged', 1);
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2014100800.02; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2014100800.07; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user