N°6016 Setup Wizard : fix MissingDependencyException message logged as html in setup.log

Was the case since e831d66b (commit for parent bug N°5090)
Now we are getting the text version in the log (and still the html one on screen)

The unattended install isn't concerned : it just prints back CheckResult returned by \SetupUtils::CheckSelectedModules, with the exception text message ($e->getMessage())
This commit is contained in:
Pierre Goiffon
2023-03-06 11:24:46 +01:00
parent 4cea418517
commit d908827787
2 changed files with 9 additions and 9 deletions

View File

@@ -1386,7 +1386,7 @@ class WizStepModulesChoice extends WizardStep
}
catch(MissingDependencyException $e)
{
$oPage->warning($e->getHtmlDesc());
$oPage->warning($e->getHtmlDesc(), $e->getMessage());
}
$this->bUpgrade = ($this->oWizard->GetParameter('install_mode') != 'install');