diff --git a/wp-includes/feed-atom-comments.php b/wp-includes/feed-atom-comments.php
index 21048e94f5..687b450753 100644
--- a/wp-includes/feed-atom-comments.php
+++ b/wp-includes/feed-atom-comments.php
@@ -15,11 +15,11 @@ echo ''
>
@@ -50,9 +50,9 @@ if ( have_comments() ) : while ( have_comments() ) : the_comment();
if ( !is_singular() ) {
$title = get_the_title($comment_post->ID);
$title = apply_filters('the_title_rss', $title);
- printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
+ printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
} else {
- printf(__('By: %s'), get_comment_author_rss());
+ printf(ent2ncr(__('By: %s')), get_comment_author_rss());
}
?>
diff --git a/wp-includes/feed-rss2-comments.php b/wp-includes/feed-rss2-comments.php
index 66ca92050f..a11bdaa9ab 100644
--- a/wp-includes/feed-rss2-comments.php
+++ b/wp-includes/feed-rss2-comments.php
@@ -18,11 +18,11 @@ echo '';
query_vars['s']));
+ printf(ent2ncr(__('Comments for %s searching on %s')), get_bloginfo_rss( 'name' ), attribute_escape($wp_query->query_vars['s']));
else
- printf(__('Comments for %s'), get_bloginfo_rss( 'name' ) . get_wp_title_rss());
+ printf(ent2ncr(__('Comments for %s')), get_bloginfo_rss( 'name' ) . get_wp_title_rss());
?>
@@ -42,9 +42,9 @@ if ( have_comments() ) : while ( have_comments() ) : the_comment();
if ( !is_singular() ) {
$title = get_the_title($comment_post->ID);
$title = apply_filters('the_title_rss', $title);
- printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
+ printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
} else {
- printf(__('By: %s'), get_comment_author_rss());
+ printf(ent2ncr(__('By: %s')), get_comment_author_rss());
}
?>
@@ -52,7 +52,7 @@ if ( have_comments() ) : while ( have_comments() ) : the_comment();
-
+
]]>