Make WordPress Core

Ticket #25170: 25170.2.patch

File 25170.2.patch, 704 bytes (added by desrosj, 11 years ago)

Updated patch using size_format().

  • wp-admin/includes/media.php

     
    24482448                                echo strtoupper( str_replace( 'image/', '', $post->post_mime_type ) );
    24492449                ?></strong>
    24502450        </div>
     2451        <div class="misc-pub-section misc-pub-filesize">
     2452                <?php _e( 'File size:' ); ?> <strong><?php
    24512453
     2454                        if ( isset( $meta['filesize'] ) )
     2455                                $file_size = $meta['filesize'];
     2456                        else
     2457                                $file_size = filesize( get_attached_file( $post->ID ) );
     2458
     2459                        echo size_format( $file_size );
     2460                ?></strong>
     2461        </div>
     2462
    24522463<?php
    24532464        if ( preg_match( '#^audio|video#', $post->post_mime_type ) ):
    24542465