From 408e3812af6480eccc38f89b96a9380c1a2d2cc2 Mon Sep 17 00:00:00 2001 From: David Monllao Date: Thu, 11 Jun 2015 14:37:31 +0800 Subject: [PATCH] MDL-48618 grades: Forcing new upgrade savepoint --- lib/db/upgrade.php | 4 ++-- version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index be61a43dfff..ff42984b0a3 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -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; diff --git a/version.php b/version.php index 7506bfaa0db..eb8bce5201c 100644 --- a/version.php +++ b/version.php @@ -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.