Fix stickler

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
pull/4659/head
RD WebDesign 2 years ago
parent c9809371ab
commit f8e84b3c3f

@ -167,8 +167,7 @@ function queryAds($serverName) {
// Determine which protocol should be used
$protocol = "http";
if (
(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ||
if ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ||
(isset($_SERVER['REQUEST_SCHEME']) && $_SERVER['REQUEST_SCHEME'] === 'https') ||
(isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https')
) {
@ -191,7 +190,7 @@ function queryAds($serverName) {
$queryAds = array_values(array_filter(preg_replace("/data:\s+/", "", $queryAdsFile)));
} else {
// if not an array, return an error message
return array("0" => "error", "1" => "<br>Not an array: (".gettype($queryAdsFile).")<br>".print_r($queryAdsFile, true));
return array("0" => "error", "1" => "<br>(".gettype($queryAdsFile).")<br>".print_r($queryAdsFile, true));
}
$queryTime = sprintf("%.0f", (microtime(true)-$_SERVER["REQUEST_TIME_FLOAT"]) - $preQueryTime);

Loading…
Cancel
Save