Fix one mistake where `$proto` would not be created if `$_SERVER['HTTPS']` exists but is not set to `on`

pull/1692/head
andofrjando 7 years ago
parent 00d62b3423
commit 5e48b3f7f7
No known key found for this signature in database
GPG Key ID: F5978346E0803DC0

@ -41,12 +41,10 @@ $validExtTypes = array("asp", "htm", "html", "php", "rss", "xml", "");
$currentUrlExt = pathinfo($_SERVER["REQUEST_URI"], PATHINFO_EXTENSION);
// Check if this is served over HTTP or HTTPS
if(isset($_SERVER['HTTPS'])) {
if ($_SERVER['HTTPS'] == "on") {
$proto = "https";
} else {
$proto = "http";
}
if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") {
$proto = "https";
} else {
$proto = "http";
}
// Set mobile friendly viewport

Loading…
Cancel
Save