Media: Remove error suppression in wp_filesize().

Replace error suppressing in `wp_filesize()` with a `file_exists()` check before calling the native PHP `filesize()` function.

Follow up to [52837].

Props Cybr, johnbillion, spacedmonkey, antpb, azouamauriac, ironprogrammer, mukesh27, costdev, audrasjb, dlh, peterwilsoncc.
Merges [53372] to the 6.0 branch.
Fixes #55678.
See #49412.

git-svn-id: https://develop.svn.wordpress.org/branches/6.0@53380 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2022-05-10 16:10:46 +00:00
parent b49e8885e8
commit d0501c4d19

View File

@ -3503,7 +3503,7 @@ function wp_filesize( $path ) {
return $size;
}
$size = (int) @filesize( $path );
$size = file_exists( $path ) ? (int) filesize( $path ) : 0;
/**
* Filters the size of the file.