diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 88d210bbd2..b4ea6fbce0 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -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.