From ea9bc6cebdbdd9aed00a7c47388ecaa86d9abd3a Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Thu, 11 Feb 2016 13:29:00 +0100 Subject: [PATCH] Conform to coding guidelines refs #11051 --- library/Icinga/Application/Config.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/library/Icinga/Application/Config.php b/library/Icinga/Application/Config.php index 251ed4fb6..de8fec6f4 100644 --- a/library/Icinga/Application/Config.php +++ b/library/Icinga/Application/Config.php @@ -475,9 +475,10 @@ class Config implements Countable, Iterator, Selectable if ($username) { $path = static::resolvePath(implode(DIRECTORY_SEPARATOR, array('preferences', $username, $filename))); if (realpath($path) === false) { - $path = static::resolvePath(implode(DIRECTORY_SEPARATOR, array( - 'preferences', strtolower($username), $filename - ))); + $path = static::resolvePath(implode( + DIRECTORY_SEPARATOR, + array('preferences', strtolower($username), $filename) + )); } } else { $path = static::resolvePath('navigation' . DIRECTORY_SEPARATOR . $filename);