N°9989 Do not show "check compatibility" button at all

This commit is contained in:
Timmy38
2026-08-26 15:17:46 +02:00
parent 8065343ea6
commit f04508261c

View File

@@ -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()