From 8294471253e58331662759a609b3da730e9f311c Mon Sep 17 00:00:00 2001 From: Jennifer Mourek Date: Fri, 14 Oct 2016 09:39:24 +0200 Subject: [PATCH] Revert "LessCompiler: Remove error message when switching to Icinga theme" This reverts commit 2e24833d7cb474ec9614f44496bcf3e589f386af. --- library/Icinga/Web/LessCompiler.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/library/Icinga/Web/LessCompiler.php b/library/Icinga/Web/LessCompiler.php index 0419e1518..7ec34a143 100644 --- a/library/Icinga/Web/LessCompiler.php +++ b/library/Icinga/Web/LessCompiler.php @@ -122,9 +122,7 @@ class LessCompiler if (is_file($theme) && is_readable($theme)) { $this->theme = $theme; } else { - if ($theme !== '/vagrant/public/css/themes/Icinga.less') { - Logger::error('Can\t load theme %s. Make sure that the theme exists and is readable', $theme); - } + Logger::error('Can\t load theme %s. Make sure that the theme exists and is readable', $theme); } return $this; }