Make WordPress Core

Ticket #4019: edit-php.diff

File edit-php.diff, 602 bytes (added by jhodgdon, 19 years ago)

Patch to filter the title - not sure if it needs strip slashes too? Works for me without, but I don't have any slashes in my titles anyway...

  • E:/EclipseWork/WordPressDev/wp-admin/edit.php

     
    6464        printf(__('Search for “%s”'), wp_specialchars($_GET['s']) );
    6565} else {
    6666        if ( is_single() )
    67                 printf(__('Comments on %s'), $post->post_title);
     67                printf(__('Comments on %s'), apply_filters( "the_title", $post->post_title));
    6868        elseif ( ! is_paged() || get_query_var('paged') == 1 )
    6969                _e('Last 15 Posts');
    7070        else