aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-01-05 18:21:49 +0100
committerMario <mario@mariovavti.com>2023-01-05 18:21:49 +0100
commit47071c58aa868ee9756a98c967b64c024d22920b (patch)
tree3a1f0e7cb5931b7287cde54fe84379b75ca11001 /Zotlabs
parent79d99688b4febeef6ae552252c254efa6911fd53 (diff)
downloadvolse-hubzilla-47071c58aa868ee9756a98c967b64c024d22920b.tar.gz
volse-hubzilla-47071c58aa868ee9756a98c967b64c024d22920b.tar.bz2
volse-hubzilla-47071c58aa868ee9756a98c967b64c024d22920b.zip
fix affinity slider updates - issue #1714
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Web/Session.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Web/Session.php b/Zotlabs/Web/Session.php
index 14c054d20..1b5537ba0 100644
--- a/Zotlabs/Web/Session.php
+++ b/Zotlabs/Web/Session.php
@@ -81,7 +81,7 @@ class Session {
'lifetime' => ((isset($arr['lifetime'])) ? $arr['lifetime'] : 0),
'path' => ((isset($arr['path'])) ? $arr['path'] : '/'),
'domain' => (($arr['domain']) ? $arr['domain'] : false),
- 'secure' => ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false),
+ 'secure' => true, //((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false),
'httponly' => ((isset($arr['httponly'])) ? $arr['httponly'] : true),
'samesite' => 'None'
]);