Ticket #55678: 55678-1.diff
File 55678-1.diff, 391 bytes (added by , 2 years ago) |
---|
-
src/wp-includes/functions.php
3503 3503 return $size; 3504 3504 } 3505 3505 3506 $size = (int) @filesize( $path );3506 $size = is_readable( $path ) ? (int) filesize( $path ) : 0; 3507 3507 3508 3508 /** 3509 3509 * Filters the size of the file.