From 8a40b2d894eb3cc20721800d7cd3db8e93e307f3 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Mon, 20 Feb 2012 10:56:56 +1300 Subject: [PATCH] MDL-30521 upgrade: Corrected version bump for uniquehash field upgrade --- 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 53ca12815f8..bc8c5c4a064 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -6974,7 +6974,7 @@ FROM upgrade_main_savepoint(true, 2011120500.03); } - if ($oldversion < 2011120501.07) { + if ($oldversion < 2011120501.08) { // Check if we need to fix post.uniquehash $columns = $DB->get_columns('post'); if (array_key_exists('uniquehash', $columns) && $columns['uniquehash']->max_length != 255) { @@ -6988,7 +6988,7 @@ FROM } } - upgrade_main_savepoint(true, 2011120501.07); + upgrade_main_savepoint(true, 2011120501.08); } return true; } diff --git a/version.php b/version.php index b46b303274f..0e4f8582c32 100644 --- a/version.php +++ b/version.php @@ -30,7 +30,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2011120501.07; // 20111205 = branching date YYYYMMDD - do not modify! +$version = 2011120501.08; // 20111205 = branching date YYYYMMDD - do not modify! // RR = release increments - 00 in DEV branches // .XX = incremental changes