From 2e164a75d49b201e55ed9d4e342f96fdf1fbd8e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Aleksandrovi=C4=8D=20Klimov?= Date: Fri, 22 Aug 2025 12:01:01 +0200 Subject: [PATCH] Fix typo in code comment (#5327) Co-authored-by: Johannes Meyer --- library/Icinga/Application/webrouter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Application/webrouter.php b/library/Icinga/Application/webrouter.php index 04c75515f..b35be70bf 100644 --- a/library/Icinga/Application/webrouter.php +++ b/library/Icinga/Application/webrouter.php @@ -17,7 +17,7 @@ if (isset($_SERVER['REQUEST_URI'])) { } // Workaround, PHPs internal Webserver seems to mess up SCRIPT_FILENAME -// as it prefixes it's absolute path with DOCUMENT_ROOT +// as it prefixes its absolute path with DOCUMENT_ROOT if (preg_match('/^PHP.*Development Server/', $_SERVER['SERVER_SOFTWARE'])) { $script = basename($_SERVER['SCRIPT_FILENAME']); $_SERVER['PHP_SELF'] = $_SERVER['SCRIPT_NAME'] = '/' . $script;