summaryrefslogtreecommitdiff
path: root/logout.php
diff options
context:
space:
mode:
authorbfabiszewski <github@ushuaia.pl>2014-03-05 20:12:36 +0100
committerbfabiszewski <github@ushuaia.pl>2014-03-05 20:12:36 +0100
commit9e42c79bbc26c8730a5aade8fbed73750f98fdbd (patch)
tree2d5b505d90b94cd091c432387f1dcb567870d658 /logout.php
parentbc0aac55c50260ae1dc26effc6323f37c6acc096 (diff)
downloadRunnerUpLive-9e42c79bbc26c8730a5aade8fbed73750f98fdbd.zip
HTTPS detection on IIS
Diffstat (limited to 'logout.php')
-rwxr-xr-xlogout.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/logout.php b/logout.php
index 7a9f6c2..a786403 100755
--- a/logout.php
+++ b/logout.php
@@ -24,7 +24,7 @@ if (isset($_COOKIE[session_name('trackme')])) {
setcookie(session_name('trackme'),'',time()-42000,'/');
}
session_destroy();
-@$ssl = ($_SERVER['HTTPS'] == "" ? "http" : "https");
+$ssl = ((!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == "" || $_SERVER['HTTPS'] == "off") ? "http" : "https");
$url = str_replace("//", "/", $_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME'])."/index.php");
header("Location: $ssl://$url");
?>