From be4cdce645c6b57b4d97d96525ccbfda5aa9f891 Mon Sep 17 00:00:00 2001 From: odain Date: Thu, 11 Jun 2026 13:20:08 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B09678=20-=20fix=20selecting=20extensions?= =?UTF-8?q?=20from=20extensions=20folder=20in=20extension=20mgt=20view?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/feature_removal/DryRemovalRuntimeEnvironment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/feature_removal/DryRemovalRuntimeEnvironment.php b/setup/feature_removal/DryRemovalRuntimeEnvironment.php index 0cc4e7e19e..b9b651c066 100644 --- a/setup/feature_removal/DryRemovalRuntimeEnvironment.php +++ b/setup/feature_removal/DryRemovalRuntimeEnvironment.php @@ -40,7 +40,7 @@ class DryRemovalRuntimeEnvironment extends RunTimeEnvironment $this->GetExtensionMap()->DeclareExtensionAsRemoved($this->aExtensionsToRemoveByCode); foreach ($this->GetExtensionMap()->GetAllExtensions() as $oExtension) { - if (in_array($oExtension->sCode, $this->aExtensionCodesToAddByCode)) { + if (array_key_exists($oExtension->sCode, $this->aExtensionCodesToAddByCode)) { $oExtension->bMarkedAsChosen = true; } }