WordPress Version: 6.2
/**
* Gets the remaining upload space for this site.
*
* @since MU (3.0.0)
*
* @param int $size Current max size in bytes.
* @return int Max size in bytes.
*/
function fix_import_form_size($size)
{
if (upload_is_user_over_quota(false)) {
return 0;
}
$available = get_upload_space_available();
return min($size, $available);
}