diff --git a/wp-includes/template-functions-comment.php b/wp-includes/template-functions-comment.php index ea568646a..1c3ffd08c 100644 --- a/wp-includes/template-functions-comment.php +++ b/wp-includes/template-functions-comment.php @@ -121,7 +121,6 @@ function comment_author_email() { function comment_author_link() { global $comment; $url = apply_filters('comment_url', $comment->comment_author_url); - $email = apply_filters('comment_email', $comment->comment_author_email); $author = apply_filters('comment_author', $comment->comment_author); if (empty($url) && empty($email)) { @@ -132,8 +131,6 @@ function comment_author_link() { echo '' . $author . ''; }