Make WordPress Core

Changeset 12195


Ignore:
Timestamp:
11/17/2009 12:11:49 AM (15 years ago)
Author:
azaozz
Message:

Add labels to image info in the media library, fixes #8886

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/media.php

    r12190 r12195  
    12021202        <tr>
    12031203            <td class='A1B1' id='thumbnail-head-$post->ID' rowspan='5'><img class='thumbnail' src='$thumb_url' alt='' /></td>
    1204             <td>$filename</td>
     1204            <td><strong>" . __('File name:') . "</strong> $filename</td>
    12051205        </tr>
    1206         <tr><td>$post->post_mime_type</td></tr>
    1207         <tr><td>" . mysql2date(get_option('time_format'), $post->post_date) . "</td></tr>
    1208         <tr><td>" . apply_filters('media_meta', $media_dims, $post) . "</td></tr>
     1206        <tr><td><strong>" . __('File type:') . "</strong> $post->post_mime_type</td></tr>
     1207        <tr><td><strong>" . __('Upload date:') . "</strong> " . mysql2date( get_option('date_format'), $post->post_date ) . "</td></tr>
     1208        <tr><td><strong>" . __('Dimensions:') . "</strong> " . apply_filters('media_meta', $media_dims, $post) . "</td></tr>
    12091209        <tr><td class='A1B1'>$image_edit_button</td></tr>
    12101210        </thead>
Note: See TracChangeset for help on using the changeset viewer.