diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-01 15:21:54 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-01 15:21:54 +0200 |
commit | 333b80e256edecaefef764969bb9dc2a00a3fbb3 (patch) | |
tree | 26fb6323c783a5785982baf8e4761bfc1a9ed8a7 | |
parent | 58706adfae1f8aea16a3ee43d333991f1daf0484 (diff) |
Issue #2508
-rw-r--r-- | system/core/Common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index cb087cb22..93cd0a0ae 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -346,7 +346,7 @@ if ( ! function_exists('is_https')) */ function is_https() { - if (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) === 'on') + if ( ! empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') { return TRUE; } @@ -354,7 +354,7 @@ if ( ! function_exists('is_https')) { return TRUE; } - elseif (isset($_SERVER['HTTP_FRONT_END_HTTPS']) && $_SERVER['HTTP_FRONT_END_HTTPS'] === 'on') + elseif ( ! empty($_SERVER['HTTP_FRONT_END_HTTPS']) && strtolower($_SERVER['HTTP_FRONT_END_HTTPS']) !== 'off') { return TRUE; } |