From e234ac8dcb2fa73bc573fea1e809ef45b3392ca7 Mon Sep 17 00:00:00 2001 From: Natan Frei Date: Mon, 17 Jul 2017 00:44:48 +0300 Subject: $_SERVER['HTTPS'] can be exists and 'off' for non-https connectios --- include/sessions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/sessions.php') diff --git a/include/sessions.php b/include/sessions.php index 0690ab7ed..3d6e6e2c6 100644 --- a/include/sessions.php +++ b/include/sessions.php @@ -12,7 +12,7 @@ $session_expire = min(2147483647 - time() - 1, max(SESSION_COOKIE_LIFETIME, 86400)); $session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME; - if (@$_SERVER['HTTPS'] == "on") { + if ((!empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] != 'off')) || @$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') { $session_name .= "_ssl"; ini_set("session.cookie_secure", true); } -- cgit v1.2.3