Skip to content

Commit

Permalink
MDL-82984 core: Missing step to uninstall filter_tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
sarjona committed Sep 2, 2024
1 parent 072fb90 commit 875fa9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -1240,14 +1240,14 @@ function xmldb_main_upgrade($oldversion) {
upgrade_main_savepoint(true, 2024080500.00);
}

if ($oldversion < 2024082300.00) {
if ($oldversion < 2024082900.01) {
// If filter_tidy is no longer present, remove it.
if (!file_exists($CFG->dirroot . '/filter/tidy/version.php')) {
// Clean config.
unset_all_config_for_plugin('filter_tidy');
uninstall_plugin('filter', 'tidy');
}

upgrade_main_savepoint(true, 2024082300.00);
upgrade_main_savepoint(true, 2024082900.01);
}

return true;
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

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

$version = 2024082900.00; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2024082900.01; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
$release = '4.5dev+ (Build: 20240829)'; // Human-friendly version name
Expand Down

0 comments on commit 875fa9c

Please sign in to comment.