diff --git a/library/Icinga/Web/Setup/MakeDirStep.php b/library/Icinga/Web/Setup/MakeDirStep.php index d7790fd10..bbf7b0e0d 100644 --- a/library/Icinga/Web/Setup/MakeDirStep.php +++ b/library/Icinga/Web/Setup/MakeDirStep.php @@ -45,34 +45,8 @@ class MakeDirStep extends Step public function getSummary() { - $pageHtml = ''; - $pageTitle = t('Directory Creation'); - $createMsg = t('The setup will create the following directories:'); - $existsMsg = t('The setup does not need to create the following already existing directories:'); - - $toBeCreated = array_filter($this->paths, function ($p) { return false === file_exists($p); }); - if (false === empty($toBeCreated)) { - $pageHtml .= '
' . $createMsg . '
'; - - $pageHtml .= '' . $existsMsg . '
'; - - $pageHtml .= '