From 8e26e1f64667255b17d702aecf782c73fec1641e Mon Sep 17 00:00:00 2001 From: joyqi Date: Mon, 2 Dec 2013 15:26:17 +0800 Subject: [PATCH] fixed #97 --- var/Typecho/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/Typecho/Request.php b/var/Typecho/Request.php index 1ad305c4..d53fb341 100644 --- a/var/Typecho/Request.php +++ b/var/Typecho/Request.php @@ -640,7 +640,7 @@ class Typecho_Request */ public function isSecure() { - return (isset($_SERVER['HTTPS']) && 'on' == $_SERVER['HTTPS']) || (isset($_SERVER['SERVER_PORT']) && 443 == $_SERVER['SERVER_PORT']); + return (isset($_SERVER['HTTPS']) && 'off' != $_SERVER['HTTPS']) || (isset($_SERVER['SERVER_PORT']) && 443 == $_SERVER['SERVER_PORT']); } /**