Add title attribute to edit page link. see #6082
git-svn-id: http://svn.automattic.com/wordpress/trunk@7354 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
908885e15c
commit
aa4873ee62
|
@ -397,7 +397,7 @@ foreach ($posts_columns as $column_name=>$column_display_name) {
|
|||
if ( empty($title) )
|
||||
$title = __('(no title)');
|
||||
?>
|
||||
<td><strong><a class="row-title" href="page.php?action=edit&post=<?php the_ID(); ?>"><?php echo $pad; echo $title ?></a></strong>
|
||||
<td><strong><a class="row-title" href="page.php?action=edit&post=<?php the_ID(); ?>" title="<?php echo attribute_escape(sprintf(__('Edit "%s"'), $title)); ?>"><?php echo $pad; echo $title ?></a></strong>
|
||||
<?php if ('private' == $page->post_status) _e(' — <strong>Private</strong>'); ?></td>
|
||||
<?php
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue