From 923e902957b2d05bde220f547f2cc6255d3242ae Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Fri, 26 Feb 2016 14:26:10 +0100 Subject: [PATCH] Web::bootstrap(): set up the request before setting up the session refs #11187 --- library/Icinga/Application/Web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Application/Web.php b/library/Icinga/Application/Web.php index d4cb9cecc..0b15ceaf5 100644 --- a/library/Icinga/Application/Web.php +++ b/library/Icinga/Application/Web.php @@ -82,9 +82,9 @@ class Web extends EmbeddedWeb ->setupLogging() ->setupErrorHandling() ->loadConfig() + ->setupRequest() ->setupSession() ->setupNotifications() - ->setupRequest() ->setupResponse() ->setupZendMvc() ->setupModuleManager()