Ticket #37037: 37037.diff
File 37037.diff, 658 bytes (added by , 8 years ago) |
---|
-
deprecated.php
1 1 2 <?php 2 3 /** 3 4 * Deprecated functions from past WordPress versions. You shouldn't use these … … 3329 3330 function wp_convert_bytes_to_hr( $bytes ) { 3330 3331 _deprecated_function( __FUNCTION__, '3.6', 'size_format()' ); 3331 3332 3332 $units = array( 0 => 'B', 1 => ' kB', 2 => 'MB', 3 => 'GB', 4 => 'TB' );3333 $units = array( 0 => 'B', 1 => 'KB', 2 => 'MB', 3 => 'GB', 4 => 'TB' ); 3333 3334 $log = log( $bytes, KB_IN_BYTES ); 3334 3335 $power = (int) $log; 3335 3336 $size = pow( KB_IN_BYTES, $log - $power );