diff --git a/setup/wizardsteps/WizStepModulesChoice.php b/setup/wizardsteps/WizStepModulesChoice.php
index 89c4c96dd9..a7bb12d0ec 100644
--- a/setup/wizardsteps/WizStepModulesChoice.php
+++ b/setup/wizardsteps/WizStepModulesChoice.php
@@ -796,18 +796,18 @@ EOF
$sTooltip = '';
if ($aFlags['missing']) {
- $sTooltip .= 'source removed';
+ $sTooltip .= '
source removed
';
}
if ($aFlags['installed']) {
- $sTooltip .= 'installed';
+ $sTooltip .= 'installed
';
- $sTooltip .= 'to be uninstalled';
+ $sTooltip .= 'to be uninstalled
';
} else {
- $sTooltip .= 'to be installed';
- $sTooltip .= 'not installed';
+ $sTooltip .= 'to be installed
';
+ $sTooltip .= 'not installed
';
}
if (!$aFlags['uninstallable']) {
- $sTooltip .= 'cannot be uninstalled';
+ $sTooltip .= 'cannot be uninstalled
';
}
$sMetadata = '';
diff --git a/tests/php-unit-tests/unitary-tests/setup/WizStepModulesChoiceTest.php b/tests/php-unit-tests/unitary-tests/setup/WizStepModulesChoiceTest.php
index ffe0eb3eb5..5acaa73b1f 100644
--- a/tests/php-unit-tests/unitary-tests/setup/WizStepModulesChoiceTest.php
+++ b/tests/php-unit-tests/unitary-tests/setup/WizStepModulesChoiceTest.php
@@ -971,7 +971,7 @@ class WizStepModulesChoiceTest extends ItopTestCase