Add title attribute to edit media link. see #6082
git-svn-id: http://svn.automattic.com/wordpress/trunk@7366 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7622ef7ce5
commit
93db749985
|
@ -50,7 +50,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
|
||||||
|
|
||||||
case 'media':
|
case 'media':
|
||||||
?>
|
?>
|
||||||
<td><strong><a href="media.php?action=edit&attachment_id=<?php the_ID(); ?>"><?php the_title(); ?></a></strong><br />
|
<td><strong><a href="media.php?action=edit&attachment_id=<?php the_ID(); ?>" title="<?php echo attribute_escape(sprintf(__('Edit "%s"'), get_the_title())); ?>"><?php the_title(); ?></a></strong><br />
|
||||||
<?php echo strtoupper(preg_replace('/^.*?\.(\w+)$/', '$1', get_attached_file($post->ID))); ?>
|
<?php echo strtoupper(preg_replace('/^.*?\.(\w+)$/', '$1', get_attached_file($post->ID))); ?>
|
||||||
<?php do_action('manage_media_media_column', $post->ID); ?>
|
<?php do_action('manage_media_media_column', $post->ID); ?>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue