MDL-48618 grades: Forcing new upgrade savepoint

This commit is contained in:
David Monllao 2015-06-11 14:37:31 +08:00
parent e87acc8386
commit 408e3812af
2 changed files with 3 additions and 3 deletions

View File

@ -4382,7 +4382,7 @@ function xmldb_main_upgrade($oldversion) {
// Moodle v2.9.0 release upgrade line.
// Put any upgrade step following this.
if ($oldversion < 2015060400.01) {
if ($oldversion < 2015060400.02) {
// Sites that were upgrading from 2.7 and older will ignore this step.
if (empty($CFG->upgrade_minmaxgradestepignored)) {
@ -4393,7 +4393,7 @@ function xmldb_main_upgrade($oldversion) {
set_config('upgrade_minmaxgradestepignored', 1);
}
upgrade_main_savepoint(true, 2015060400.01);
upgrade_main_savepoint(true, 2015060400.02);
}
return true;

View File

@ -29,7 +29,7 @@
defined('MOODLE_INTERNAL') || die();
$version = 2015060400.01; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2015060400.02; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.