From 9ff2f7d167e69c18af7cb2165c5897c4882ebcf6 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 5 Nov 2005 22:53:40 +0000 Subject: [PATCH] Allow "anonymous" to be translated, fixes #1740 git-svn-id: https://develop.svn.wordpress.org/trunk@2986 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/comment-functions.php b/wp-includes/comment-functions.php index 69ef606b57..1480e44255 100644 --- a/wp-includes/comment-functions.php +++ b/wp-includes/comment-functions.php @@ -294,7 +294,7 @@ function comment_ID() { function get_comment_author() { global $comment; if ( empty($comment->comment_author) ) - $author = 'Anonymous'; + $author = __('Anonymous'); else $author = $comment->comment_author; return apply_filters('get_comment_author', $author);