mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-20245 grade: fix version numbers
This commit puts the 22_STABLE and master main versions back to "on-sync" mode (very first weeks after major release).
This commit is contained in:
parent
8e54ce9717
commit
52a2306386
2 changed files with 3 additions and 3 deletions
|
@ -6979,7 +6979,7 @@ FROM
|
||||||
upgrade_main_savepoint(true, 2011120500.02);
|
upgrade_main_savepoint(true, 2011120500.02);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($oldversion < 2011121400.00) {
|
if ($oldversion < 2011120500.03) {
|
||||||
|
|
||||||
// Changing precision of field value on table user_preferences to (1333)
|
// Changing precision of field value on table user_preferences to (1333)
|
||||||
$table = new xmldb_table('user_preferences');
|
$table = new xmldb_table('user_preferences');
|
||||||
|
@ -6989,7 +6989,7 @@ FROM
|
||||||
$dbman->change_field_precision($table, $field);
|
$dbman->change_field_precision($table, $field);
|
||||||
|
|
||||||
// Main savepoint reached
|
// Main savepoint reached
|
||||||
upgrade_main_savepoint(true, 2011121400.00);
|
upgrade_main_savepoint(true, 2011120500.03);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
|
||||||
$version = 2011121400.00; // YYYYMMDD = weekly release date of this DEV branch
|
$version = 2011120500.03; // YYYYMMDD = weekly release date of this DEV branch
|
||||||
// RR = release increments - 00 in DEV branches
|
// RR = release increments - 00 in DEV branches
|
||||||
// .XX = incremental changes
|
// .XX = incremental changes
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue