We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ddcd27 commit a3ecd25Copy full SHA for a3ecd25
setup/extensionsmap.class.inc.php
@@ -104,6 +104,7 @@ protected function ProcessWizardChoices($aChoices)
104
if (array_key_exists('extension_code', $aChoiceInfo)) {
105
$oExtension = new iTopExtension();
106
$oExtension->sCode = $aChoiceInfo['extension_code'];
107
+ $oExtension->bCanBeUninstalled = !isset($aChoiceInfo['uninstallable']) || $aChoiceInfo['uninstallable'] === 'yes';
108
$oExtension->sLabel = $aChoiceInfo['title'];
109
$oExtension->sDescription = $aChoiceInfo['description'];
110
if (array_key_exists('modules', $aChoiceInfo)) {
0 commit comments