Skip to content

Commit

Permalink
MDL-77793 core: Bump version for device theme removal
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols authored and sarjona committed Jun 22, 2023
1 parent 17c6bfa commit 776abf1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions lib/db/upgrade.php
Expand Up @@ -3305,14 +3305,13 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2023051500.00);
}

if ($oldversion < 2023052500.00) {

if ($oldversion < 2023062200.00) {
// Remove device specific fields for themes from config table.
unset_config('thememobile');
unset_config('themelegacy');
unset_config('themetablet');

upgrade_main_savepoint(true, 2023052500.00);
upgrade_main_savepoint(true, 2023062200.00);
}

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

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

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

0 comments on commit 776abf1

Please sign in to comment.