Merge pull request #4657 from rdwebdesign/fix4656

Add check to avoid error in PHP 8 on the blocking page
This commit is contained in:
yubiuser 2022-03-22 00:37:57 +01:00 committed by GitHub
commit a48750e257
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -170,7 +170,15 @@ function queryAds($serverName) {
$serverName
);
$queryAds = file($queryAdsURL, FILE_IGNORE_NEW_LINES);
// $queryAds must be an array (to avoid PHP 8.0+ error)
if (is_array($queryAds)) {
$queryAds = array_values(array_filter(preg_replace("/data:\s+/", "", $queryAds)));
} else {
// if not an array, return an error message
return array("0" => "error", "1" => "Not an array:<br>(".gettype($queryAds).")<br>".print_r($queryAds, true));
}
$queryTime = sprintf("%.0f", (microtime(true)-$_SERVER["REQUEST_TIME_FLOAT"]) - $preQueryTime);
// Exception Handling