diff options
Diffstat (limited to '')
-rw-r--r-- | lib/helper.php | 2 |
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() |