From 2439460371df13c2caf5d6c27f2a081e2c0eee4e Mon Sep 17 00:00:00 2001 From: Noah Hilverling Date: Mon, 17 Oct 2016 10:16:03 +0200 Subject: [PATCH] Url: Fix incorrect line indentation in method getAbsoluteUrl refs #12133 --- library/Icinga/Web/Url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Web/Url.php b/library/Icinga/Web/Url.php index 3b25d7786..ba77b3b03 100644 --- a/library/Icinga/Web/Url.php +++ b/library/Icinga/Web/Url.php @@ -562,7 +562,7 @@ class Url $basePath = $this->getBasePath(); if (!$basePath) { - $basePath = '/'; + $basePath = '/'; } if (!$this->isExternal()) { return $basePath . ($basePath !== '/' && $path ? '/' : '') . $path;