aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMaZderMind2015-07-13 13:53:04 +0200
committerMaZderMind2015-07-13 13:53:04 +0200
commit0f228203aed15e8f992f693ceae56db25fdf439e (patch)
treec8779c6e881f75a2f96a43eaa18cbd6bc7302b7b /lib
parent74284644626e098363ed8a0668b6344310abc96d (diff)
check for HTTPS header value
Diffstat (limited to 'lib')
-rw-r--r--lib/helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/helper.php b/lib/helper.php
index 711ac6a..1dd37ff 100644
--- a/lib/helper.php
+++ b/lib/helper.php
@@ -2,7 +2,7 @@
function ssl()
{
- return isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'];
+ return isset($_SERVER['HTTPS']) && strcmp($_SERVER['HTTPS'], 'on') == 0;
}
function proto()