From 350b6ce42654f80f1b348b7feec310f840339331 Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Mon, 19 Sep 2016 12:03:49 +0200 Subject: [PATCH] MDL-29332 versions: Force bump becuase patch ones were matching upstream --- 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 e2dff5017b7..5f76eb7ff60 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -4700,7 +4700,7 @@ function xmldb_main_upgrade($oldversion) { upgrade_main_savepoint(true, 2015111605.07); } - if ($oldversion < 2015111606.01) { + if ($oldversion < 2015111606.02) { // Define index attemptstepid-name (unique) to be dropped from question_attempt_step_data. $table = new xmldb_table('question_attempt_step_data'); @@ -4712,7 +4712,7 @@ function xmldb_main_upgrade($oldversion) { } // Main savepoint reached. - upgrade_main_savepoint(true, 2015111606.01); + upgrade_main_savepoint(true, 2015111606.02); } return true; diff --git a/version.php b/version.php index 358d3912d67..5deda179ae3 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2015111606.01; // 20151116 = branching date YYYYMMDD - do not modify! +$version = 2015111606.02; // 20151116 = branching date YYYYMMDD - do not modify! // RR = release increments - 00 in DEV branches. // .XX = incremental changes. -- 2.11.4.GIT