diff options
author | Richard Deurwaarder (Xeli) <richard@xelification.com> | 2013-06-24 15:06:19 +0200 |
---|---|---|
committer | Richard Deurwaarder (Xeli) <richard@xelification.com> | 2013-06-24 15:06:19 +0200 |
commit | 7cc29451bb685d05b4faeb79762b1b291cb44b8b (patch) | |
tree | 3d16be060da4daff0653220564c9a65f9bec1c90 /system | |
parent | 4055d577822130006e058f6505d022aac444f855 (diff) |
remove else clause in is_https function, just add return FALSE as fallback
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Common.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index 851d4f34e..f3a1b5055 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -358,10 +358,7 @@ if ( ! function_exists('is_https')) { return TRUE; } - else - { - return FALSE; - } + return FALSE; } } |