mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +02:00
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:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user