From 6addc13f46c29674bdf82986319f1aad8abf50cd Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 22 Jan 2013 19:21:40 +0400 Subject: [PATCH] sessions: prevent HTTPS warning --- include/sessions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sessions.php b/include/sessions.php index e692d116..bd07c199 100644 --- a/include/sessions.php +++ b/include/sessions.php @@ -7,7 +7,7 @@ $session_expire = SESSION_EXPIRE_TIME; //seconds $session_name = (!defined('TTRSS_SESSION_NAME')) ? "ttrss_sid" : TTRSS_SESSION_NAME; - if ($_SERVER['HTTPS'] == "on") { + if (@$_SERVER['HTTPS'] == "on") { $session_name .= "_ssl"; ini_set("session.cookie_secure", true); } -- 2.39.5