From f04508261cb2659edec573b28f22d9ef5ec3a08e Mon Sep 17 00:00:00 2001 From: Timmy38 Date: Wed, 26 Aug 2026 15:17:46 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B09989=20Do=20not=20show=20"check=20compat?= =?UTF-8?q?ibility"=20button=20at=20all?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/wizardsteps/WizStepModulesChoice.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup/wizardsteps/WizStepModulesChoice.php b/setup/wizardsteps/WizStepModulesChoice.php index b7c75f5cca..16c0dc5d0d 100644 --- a/setup/wizardsteps/WizStepModulesChoice.php +++ b/setup/wizardsteps/WizStepModulesChoice.php @@ -792,8 +792,11 @@ EOF // If the extension has a dependency issue, it cannot be checked and must be unchecked using the "force-uninstall" option $bDisabled = !$bInstalled || !$bDisableUninstallCheck; } elseif ($bInstalled && $bDoNotUninstall) { - // If the extension is uninstallable, it must be unchecked using the "force-uninstall" option + // If the extension is not uninstallable, it must be unchecked using the "force-uninstall" option $bDisabled = !$bDisableUninstallCheck; + if ($bDisabled) { + $bChecked = true; + } } if (isset($aChoice['sub_options'])) { @@ -987,7 +990,7 @@ EOF public function CanMoveForward() { - return true; + return $this->bCanMoveForward; } public function JSCanMoveForward()