mirror of
git://develop.git.wordpress.org/
synced 2025-04-05 04:33:18 +02:00
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:
parent
b49e8885e8
commit
d0501c4d19
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user