commit 62fa5f385f53752bf23e1935e608c234585ceced
parent ae4536ec9fd1cb5b651c6788d139ac35e8bc8832
Author: markseu <mark2011@mayberg.se>
Date: Fri, 21 Nov 2025 18:30:44 +0100
Updated for PHP 8.5 compatibility
Co-Authored-By: Steffen Schultz <steffenschultz@mailbox.org>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/system/workers/install.php b/system/workers/install.php
@@ -441,7 +441,7 @@ class YellowInstall {
}
if ($statusCode!=200) break;
}
- curl_close($curlHandle);
+ if (PHP_VERSION_ID<80000) curl_close($curlHandle);
echo "\rDownloading available extensions 100%... done\n";
}
return $statusCode;