Restore the original wp_convert_bytes_to_hr() code. fixes #19067.

git-svn-id: http://core.svn.wordpress.org/trunk@23440 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-02-16 03:59:37 +00:00
parent bc2ff9d342
commit 7863062678
1 changed files with 5 additions and 1 deletions

View File

@ -3377,5 +3377,9 @@ function gd_edit_image_support($mime_type) {
*/
function wp_convert_bytes_to_hr( $bytes ) {
_deprecated_function( __FUNCTION__, '3.6', 'size_format()' );
return size_format( $bytes );
$units = array( 0 => 'B', 1 => 'kB', 2 => 'MB', 3 => 'GB' );
$log = log( $bytes, 1024 );
$power = (int) $log;
$size = pow( 1024, $log - $power );
return $size . $units[$power];
}