From 8ea4ca38ce44c37f60dbaf12e5cf6e2abd5ec525 Mon Sep 17 00:00:00 2001 From: markjaquith 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: http://svn.automattic.com/wordpress/trunk@4462 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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()); } ?> +