Merge branch 'MOODLE_22_STABLE' into install_22_STABLE
This commit is contained in:
@@ -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);
|
||||
|
||||
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user