Make In Response To more compect. Add link to post.

git-svn-id: https://develop.svn.wordpress.org/trunk@9624 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-11-11 23:55:59 +00:00
parent 7975b1402e
commit 514e7ed4a1
1 changed files with 1 additions and 1 deletions

View File

@ -1998,7 +1998,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true
echo ""$post_link" ";
echo '<a href="edit-comments.php?p=' . $post->ID;
if ( !empty($_GET['comment_type']) ) echo '&amp;comment_type=' . htmlspecialchars( $_GET['comment_type'] );
echo '">' . sprintf ( __ngettext('(%s comment)', '(%s comments)', $post->comment_count), $post->comment_count ) . '</a><br />';
echo '">' . sprintf ( __ngettext('(%s)', '(%s)', $post->comment_count), number_format_i18n($post->comment_count) ) . '</a> <a href="' . get_permalink($post->ID) . '">#</a><br />';
echo get_the_time(__('Y/m/d \a\t g:ia'));
echo '</td>';
}