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

This commit is contained in:
andofrjando 2017-09-16 11:24:38 +08:00
parent 00d62b3423
commit 5e48b3f7f7
No known key found for this signature in database
GPG key ID: F5978346E0803DC0

View file

@ -41,13 +41,11 @@ $validExtTypes = array("asp", "htm", "html", "php", "rss", "xml", "");
$currentUrlExt = pathinfo($_SERVER["REQUEST_URI"], PATHINFO_EXTENSION); $currentUrlExt = pathinfo($_SERVER["REQUEST_URI"], PATHINFO_EXTENSION);
// Check if this is served over HTTP or HTTPS // Check if this is served over HTTP or HTTPS
if(isset($_SERVER['HTTPS'])) { if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") {
if ($_SERVER['HTTPS'] == "on") {
$proto = "https"; $proto = "https";
} else { } else {
$proto = "http"; $proto = "http";
} }
}
// Set mobile friendly viewport // Set mobile friendly viewport
$viewPort = '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>'; $viewPort = '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>';