Make WordPress Core


Ignore:
Timestamp:
06/25/2007 05:48:35 PM (19 years ago)
Author:
ryan
Message:

Move the_title filter to get_the_title. Props jhodgdon. fixes #4477

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/index.php

    r5676 r5752  
    5050if ( $comments ) {
    5151foreach ($comments as $comment) {
    52     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>');
     52    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>');
    5353    edit_comment_link(__("Edit"), ' <small>(', ')</small>');
    5454    echo '</li>';
Note: See TracChangeset for help on using the changeset viewer.