Add title attribute to edit comment link. see #6082

git-svn-id: http://svn.automattic.com/wordpress/trunk@7355 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-03-17 22:39:06 +00:00
parent aa4873ee62
commit d7542601fb
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true
$post_link .= get_the_title($comment->comment_post_ID) . '</a>';
$edit_link_start = "<a class='row-title' href='comment.php?action=editcomment&amp;c={$comment->comment_ID}'>";
$edit_link_start = "<a class='row-title' href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . __('Edit comment') . "'>";
$edit_link_end = '</a>';
} else {
$post_link = get_the_title($comment->comment_post_ID);