Ticket #19210: feed_filter_fix_clean.patch
File feed_filter_fix_clean.patch, 523 bytes (added by , 13 years ago) |
---|
-
www\wp-includes\feed.php
old new 196 196 * @return none 197 197 */ 198 198 function comments_link_feed() { 199 echo esc_url( get_comments_link() );199 echo esc_url( apply_filters( 'comments_link_feed', get_comments_link() ) ); 200 200 } 201 201 202 202 /** … … 237 237 * @since 1.5.0 238 238 */ 239 239 function comment_link() { 240 echo esc_url( get_comment_link() );240 echo esc_url( apply_filters( 'comment_link', get_comment_link() ) ); 241 241 } 242 242 243 243 /**