Coding Standards: Use `KB_IN_BYTES` in `get_file_data()`.

See #22405, #47632.

git-svn-id: https://develop.svn.wordpress.org/trunk@45854 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-08-19 20:09:11 +00:00
parent 904b41e01c
commit c782ad4511
1 changed files with 1 additions and 1 deletions

View File

@ -5636,7 +5636,7 @@ function get_file_data( $file, $default_headers, $context = '' ) {
$fp = fopen( $file, 'r' );
// Pull only the first 8kiB of the file in.
$file_data = fread( $fp, 8192 );
$file_data = fread( $fp, 8 * KB_IN_BYTES );
// PHP will close file handle, but we are good citizens.
fclose( $fp );