mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Make wp_convert_bytes_to_hr() return consistent results on 32-bit and 64-bit systems. fixes #23626.
git-svn-id: http://core.svn.wordpress.org/trunk@23551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
87f2c02462
commit
e3148fb526
@ -3378,12 +3378,12 @@ function gd_edit_image_support($mime_type) {
|
||||
function wp_convert_bytes_to_hr( $bytes ) {
|
||||
_deprecated_function( __FUNCTION__, '3.6', 'size_format()' );
|
||||
|
||||
$units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB' );
|
||||
$units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB', 4 => 'TB' );
|
||||
$log = log( $bytes, 1024 );
|
||||
$power = (int) $log;
|
||||
$size = pow( 1024, $log - $power );
|
||||
|
||||
if ( array_key_exists( $power, $units ) ) {
|
||||
$size = pow( 1024, $log - $power );
|
||||
if ( ! is_nan( $size ) && array_key_exists( $power, $units ) ) {
|
||||
$unit = $units[ $power ];
|
||||
} else {
|
||||
$size = $bytes;
|
||||
|
Loading…
Reference in New Issue
Block a user