Make WordPress Core


Ignore:
Timestamp:
10/22/2013 05:21:32 PM (11 years ago)
Author:
nacin
Message:

Spell out duplicate hook locations.

props DrewAPicture.
fixes #25658.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/feed-atom-comments.php

    r23191 r25868  
    4949            if ( !is_singular() ) {
    5050                $title = get_the_title($comment_post->ID);
    51                 $title = apply_filters('the_title_rss', $title);
     51                /** This filter is documented in wp-includes/feed.php */
     52                $title = apply_filters( 'the_title_rss', $title );
    5253                printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
    5354            } else {
Note: See TracChangeset for help on using the changeset viewer.