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

git-svn-id: https://develop.svn.wordpress.org/trunk@12195 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-11-17 00:11:49 +00:00
parent 8565a52fb0
commit 51f2c4d17d
1 changed files with 4 additions and 4 deletions

View File

@ -1201,11 +1201,11 @@ function get_media_item( $attachment_id, $args = null ) {
<thead class='media-item-info' id='media-head-$post->ID'>
<tr>
<td class='A1B1' id='thumbnail-head-$post->ID' rowspan='5'><img class='thumbnail' src='$thumb_url' alt='' /></td>
<td>$filename</td>
<td><strong>" . __('File name:') . "</strong> $filename</td>
</tr>
<tr><td>$post->post_mime_type</td></tr>
<tr><td>" . mysql2date(get_option('time_format'), $post->post_date) . "</td></tr>
<tr><td>" . apply_filters('media_meta', $media_dims, $post) . "</td></tr>
<tr><td><strong>" . __('File type:') . "</strong> $post->post_mime_type</td></tr>
<tr><td><strong>" . __('Upload date:') . "</strong> " . mysql2date( get_option('date_format'), $post->post_date ) . "</td></tr>
<tr><td><strong>" . __('Dimensions:') . "</strong> " . apply_filters('media_meta', $media_dims, $post) . "</td></tr>
<tr><td class='A1B1'>$image_edit_button</td></tr>
</thead>
<tbody>