Changeset 5015 for trunk/wp-admin/index.php
- Timestamp:
- 03/10/2007 05:25:33 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r4915 r5015 51 51 if ( $comments ) { 52 52 foreach ($comments as $comment) { 53 echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>');53 echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . apply_filters('the_title', get_the_title($comment->comment_post_ID)) . '</a>'); 54 54 edit_comment_link(__("Edit"), ' <small>(', ')</small>'); 55 55 echo '</li>';
Note: See TracChangeset
for help on using the changeset viewer.