From 622508a215381e77e1238ca1cc5015a0b2284008 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Thu, 9 Nov 2006 19:08:57 +0000 Subject: [PATCH] Specify for comment authors in comment feed. Props to Erik Barzeski for the report, Nazgul for the patch. fixes #3303 git-svn-id: https://develop.svn.wordpress.org/trunk@4462 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-commentsrss2.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-commentsrss2.php b/wp-commentsrss2.php index 3a5d7bfff4..3130d487d3 100644 --- a/wp-commentsrss2.php +++ b/wp-commentsrss2.php @@ -58,9 +58,10 @@ if (have_posts()) : $title = apply_filters('the_title_rss', $title); printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss()); } else { - printf(__('by: %s'), get_comment_author_rss()); + printf(__('By: %s'), get_comment_author_rss()); } ?> +