From 454b3cb0a9edcb54b88a090b2cb2253ddb6c7be1 Mon Sep 17 00:00:00 2001 From: alex_t_king Date: Mon, 29 Mar 2004 05:44:01 +0000 Subject: [PATCH] removed email links from comment authors git-svn-id: http://svn.automattic.com/wordpress/trunk@1024 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions-comment.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/wp-includes/template-functions-comment.php b/wp-includes/template-functions-comment.php index ea568646ab..1c3ffd08cf 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 . ''; }