Add title attribute to edit post link. see #6802

git-svn-id: https://develop.svn.wordpress.org/trunk@7353 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-03-17 22:27:47 +00:00
parent eae7b967de
commit 341a333f20
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ foreach($posts_columns as $column_name=>$column_display_name) {
if ( empty($title) )
$title = __('(no title)');
?>
<td><strong><a class="row-title" href="post.php?action=edit&amp;post=<?php the_ID(); ?>"><?php echo $title ?></a></strong>
<td><strong><a class="row-title" href="post.php?action=edit&amp;post=<?php the_ID(); ?>" title="<?php echo attribute_escape(sprintf(__('Edit "%s"'), $title)); ?>"><?php echo $title ?></a></strong>
<?php if ('private' == $post->post_status) _e(' &#8212; <strong>Private</strong>'); ?></td>
<?php
break;