From d44071ee09af87ca48fe70f4c3fd7b516ca1cca3 Mon Sep 17 00:00:00 2001 From: Damyon Wiese Date: Mon, 19 May 2014 13:01:39 +0800 Subject: [PATCH] MDL-32543 upgrade: Increment the version bump --- lib/db/upgrade.php | 5 ++--- version.php | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index 5228a27787c..c3111c10215 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -3612,7 +3612,6 @@ function xmldb_main_upgrade($oldversion) { upgrade_main_savepoint(true, 2014041500.01); } - if ($oldversion < 2014050100.00) { // Fixing possible wrong MIME type for DigiDoc files. $extensions = array('%.bdoc', '%.cdoc', '%.ddoc'); @@ -3630,7 +3629,7 @@ function xmldb_main_upgrade($oldversion) { } // MDL-32543 Make sure that the log table has correct length for action and url fields. - if ($oldversion < 2014051200.01) { + if ($oldversion < 2014051200.02) { $table = new xmldb_table('log'); @@ -3655,7 +3654,7 @@ function xmldb_main_upgrade($oldversion) { $dbman->change_field_precision($table, $field); } - upgrade_main_savepoint(true, 2014051200.01); + upgrade_main_savepoint(true, 2014051200.02); } return true; diff --git a/version.php b/version.php index 3c453fa7bdc..e695c35cd3e 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2014051200.01; // 20140512 = branching date YYYYMMDD - do not modify! +$version = 2014051200.02; // 20140512 = branching date YYYYMMDD - do not modify! // RR = release increments - 00 in DEV branches. // .XX = incremental changes.