From bc0fa40b24f73ccce067f2d23e9aae1335c46694 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Mon, 8 Sep 2014 16:49:54 +0200 Subject: Fix bug HTTPS detection (issue with IIS) --- app/Core/Session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Core/Session.php') diff --git a/app/Core/Session.php b/app/Core/Session.php index f072350d..4f44e8e0 100644 --- a/app/Core/Session.php +++ b/app/Core/Session.php @@ -35,7 +35,7 @@ class Session self::SESSION_LIFETIME, $base_path ?: '/', null, - ! empty($_SERVER['HTTPS']), + Tool::isHTTPS(), true ); -- cgit v1.2.3