From f276622cc9389a0955e6626082f5010a8685ccf8 Mon Sep 17 00:00:00 2001 From: Lee Rowlands <lee.rowlands@previousnext.com.au> Date: Mon, 24 Jul 2023 19:11:50 +1000 Subject: [PATCH] Issue #3376376 by Charlie ChX Negyesi, andypost: HelpSectionManager::clearCachedDefinitions breaks the update system --- core/modules/help/help.module | 2 +- core/modules/help/src/HelpSectionManager.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/help/help.module b/core/modules/help/help.module index 5d5e24a6b182..84497f243f16 100644 --- a/core/modules/help/help.module +++ b/core/modules/help/help.module @@ -148,7 +148,7 @@ function _help_search_update(array $extensions = []): void { return; } - if (\Drupal::service('update.update_hook_registry')->getInstalledVersion('help') >= 10100) { + if (\Drupal::service('update.update_hook_registry')->getInstalledVersion('help') >= 10200) { // Ensure that topics for extensions that have been uninstalled are removed // and that the index state variable is updated. $help_search = \Drupal::service('plugin.manager.search')->createInstance('help_search'); diff --git a/core/modules/help/src/HelpSectionManager.php b/core/modules/help/src/HelpSectionManager.php index d8037e5082b7..1943ee056d48 100644 --- a/core/modules/help/src/HelpSectionManager.php +++ b/core/modules/help/src/HelpSectionManager.php @@ -58,7 +58,7 @@ public function setSearchManager(?PluginManagerInterface $search_manager = NULL) public function clearCachedDefinitions() { parent::clearCachedDefinitions(); $version = \Drupal::service('update.update_hook_registry')->getInstalledVersion('help'); - if ($this->searchManager && $version >= 10100) { + if ($this->searchManager && $version >= 10200) { // Rebuild the index on cache clear so that new help topics are indexed // and any changes due to help topics edits or translation changes are // picked up. -- GitLab