From b18cb943b642f0343be1d68e38ace42872790175 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 5 Jun 2007 14:41:02 +0000 Subject: [PATCH] Remove comment_text filter from get_comment_to_edit. fixes #4403 for 2.3 git-svn-id: https://develop.svn.wordpress.org/trunk@5655 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/comment.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-admin/includes/comment.php b/wp-admin/includes/comment.php index 92451a8fa8..b731624d08 100644 --- a/wp-admin/includes/comment.php +++ b/wp-admin/includes/comment.php @@ -46,7 +46,6 @@ function get_comment_to_edit( $id ) { $comment->comment_ID = (int) $comment->comment_ID; $comment->comment_post_ID = (int) $comment->comment_post_ID; - $comment->comment_content = apply_filters( 'comment_text', $comment->comment_content ); $comment->comment_content = format_to_edit( $comment->comment_content ); $comment->comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content);