Add title attribute to edit comment link. see #6082

git-svn-id: https://develop.svn.wordpress.org/trunk@7355 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-03-17 22:39:06 +00:00
parent 8cc82a8540
commit ea33e2b9c2

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);