From 7df50ac7697f9fc0e4e5420f55d0b74b99f40038 Mon Sep 17 00:00:00 2001 From: Alex King Date: Mon, 29 Mar 2004 05:44:01 +0000 Subject: [PATCH] removed email links from comment authors git-svn-id: https://develop.svn.wordpress.org/trunk@1024 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 . ''; }