Skip to content

Commit

Permalink
MDL-77325 upgrade: Bump upgrade version number to current day
Browse files Browse the repository at this point in the history
  • Loading branch information
junpataleta committed Nov 9, 2023
1 parent 0bc81f6 commit 23cb36c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/db/upgrade.php
Expand Up @@ -3682,7 +3682,7 @@ function xmldb_main_upgrade($oldversion) {
// Automatically generated Moodle v4.3.0 release upgrade line.
// Put any upgrade step following this.

if ($oldversion < 2023110200.00) {
if ($oldversion < 2023110900.00) {
// Reorder the editors to make Tiny the default for all upgrades.
$editors = [];
array_push($editors, 'tiny');
Expand All @@ -3695,7 +3695,7 @@ function xmldb_main_upgrade($oldversion) {
set_config('texteditors', implode(',', $editors));

// Main savepoint reached.
upgrade_main_savepoint(true, 2023110200.00);
upgrade_main_savepoint(true, 2023110900.00);
}

return true;
Expand Down
2 changes: 1 addition & 1 deletion version.php
Expand Up @@ -29,7 +29,7 @@

defined('MOODLE_INTERNAL') || die();

$version = 2023110200.00; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2023110900.00; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
$release = '4.4dev (Build: 20231102)'; // Human-friendly version name
Expand Down

0 comments on commit 23cb36c

Please sign in to comment.