Allow "anonymous" to be translated, fixes #1740

git-svn-id: https://develop.svn.wordpress.org/trunk@2986 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-11-05 22:53:40 +00:00
parent ee0398959b
commit 9ff2f7d167
1 changed files with 1 additions and 1 deletions

View File

@ -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);