fixes #2467 change integer cast

This commit is contained in:
HWFord
2025-12-01 10:21:48 +01:00
parent e13a25ffce
commit fbaf2fdafb

View File

@@ -2583,7 +2583,7 @@ function fetchRemote($src, &$dest, $get_data=array(), $post_data=array(), $user_
fclose($s);
return false;
}
$status = (integer) $m[2];
$status = (int) $m[2];
if ($status < 200 || $status >= 400)
{
fclose($s);