From ba3f753cf7ef28fcae7c731475667134b8f0885f Mon Sep 17 00:00:00 2001 From: Mark Nelson Date: Mon, 21 Jan 2013 17:53:44 +0800 Subject: [PATCH 1/2] MDL-33652 mod_resource: fixed issue with max filenames in 1.9 breaking temp column during upgrade --- mod/resource/db/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/resource/db/upgrade.php b/mod/resource/db/upgrade.php index 1a9d2bedc48..6c2c7162a7a 100644 --- a/mod/resource/db/upgrade.php +++ b/mod/resource/db/upgrade.php @@ -128,7 +128,7 @@ function xmldb_resource_upgrade($oldversion) { $dbman->add_field($table, $field); } // Define field mainfile to be added to resource - $field = new xmldb_field('mainfile', XMLDB_TYPE_CHAR, '255', null, null, null, null, 'tobemigrated'); + $field = new xmldb_field('mainfile', XMLDB_TYPE_CHAR, '256', null, null, null, null, 'tobemigrated'); // Conditionally launch add field mainfile if (!$dbman->field_exists($table, $field)) { $dbman->add_field($table, $field); From 8c40b4ea9d86439db06848d2f506d19c5abee332 Mon Sep 17 00:00:00 2001 From: Dan Poltawski Date: Fri, 25 Jan 2013 15:54:38 +0800 Subject: [PATCH 2/2] weekly release 2.2.7+ --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 96fc91130f1..7b28ecba067 100644 --- a/version.php +++ b/version.php @@ -30,10 +30,10 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2011120507.01; // 20111205 = branching date YYYYMMDD - do not modify! +$version = 2011120507.02; // 20111205 = branching date YYYYMMDD - do not modify! // RR = release increments - 00 in DEV branches // .XX = incremental changes -$release = '2.2.7+ (Build: 20130118)'; // Human-friendly version name +$release = '2.2.7+ (Build: 20130125)'; // Human-friendly version name $maturity = MATURITY_STABLE; // this version's maturity level