From f4f85ec3d4c20906e6bfd792bbdd0dff7207dcea Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Sun, 28 Nov 2021 13:43:55 +0100 Subject: [PATCH] bug fix on session and multiple paths --- bl-kernel/boot/admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bl-kernel/boot/admin.php b/bl-kernel/boot/admin.php index f3c119ee..79219fc1 100644 --- a/bl-kernel/boot/admin.php +++ b/bl-kernel/boot/admin.php @@ -2,7 +2,7 @@ // Start the session // If the session is not possible to start the admin area is not available -Session::start(); +Session::start($site->urlPath(), $site->isHTTPS()); if (Session::started()===false) { exit('Bludit CMS. Session initialization failed.'); }